18208.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 26 行
C
26 行
// 981204 bkoz// g++/18208// Build don't link:typedef unsigned int uint_32;class puertorico {public: void *f ();private: uint_32 member;};void foo( ){ uint_32 ui; puertorico obj; // Bug using static_cast<> ui = static_cast<uint_32>(obj); // ERROR - // ERROR - // Bug when missing the pair of braces ui = (uint_32) obj.f; // ERROR - // ERROR -}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?