⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 overload9.c

📁 this is a gcc file, you can download it and learn its usetility, for further detail please look at t
💻 C
字号:
// PRMS Id: 4257// Bug: g++ ignores non-member possibilities (ideal_candidate_ansi bug)// Build don't link:class ostream {public:#ifdef EITHER_ONE_A    ostream& operator<<(unsigned long n);    ostream& operator<<(long n);#else    ostream& operator<<(short n);    ostream& operator<<(unsigned short n);#endif};class ccObjectInfo {};ostream& operator << (ostream& out, const ccObjectInfo& obj);class ccString : public ccObjectInfo{#ifdef EITHER_ONE_B    operator int		() const;#else    operator long   		() const;#endif};// Should pick this one!!ostream& operator << (ostream& o, const ccString & s);extern ostream cout;void f (){    ccString foo;    cout << foo;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -