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

📄 900519_06.c

📁 linux下的gcc编译器
💻 C
字号:
// g++ 1.37.1 bug 900519_06// g++ allows the type given in an invocation of operator new to be a// reference type.// Since pointers to reference types are illegal, the required return type// from such an invocation (of operator new) is illegal, and thus (it seems)// the entire call to new should be treated as being illegal.typedef int& int_ref;void test (int n){  new int&;		// ERROR - missed  new int_ref;		// ERROR - missed  new int&[n];		// ERROR - missed  new int_ref[n];	// ERROR - missed  new int&[3];		// ERROR - missed  new int_ref[3];	// ERROR - missed}int main () { return 0; }

⌨️ 快捷键说明

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