📄 conversion6.c
字号:
// { dg-do run }// PRMS Id: g++/6034extern "C" int printf (const char *, ...);class Base{ char x;};template <class T>// remove the public Base inheritance and the problem goes away...class Container : public Base{public: Container(const T& aValue): myValue(aValue) { } operator const T&(void) const { printf("Container::const T& called\n"); return myValue; } protected: T myValue;};typedef unsigned short Type;typedef Container<Type> TypeContainer;int main(void){ TypeContainer myTypeContainer(2); Type t = myTypeContainer; printf ("myType = %d\n", t); return t != 2;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -