conversion6.c
来自「xml大全 可读写调用率很高 xml大全 可读写调用率很高」· C语言 代码 · 共 42 行
C
42 行
// { 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 + =
减小字号Ctrl + -
显示快捷键?