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

📄 900324_06.c

📁 gcc-you can use this code to learn something about gcc, and inquire further into linux,
💻 C
字号:
// g++ 1.37.1 bug 900324_06// g++ is unable to use context information (i.e. the required type of the// expression) to disambiguate a possibly overloaded function name when that// name is used as either the second or the third operand of a ?: operator.// It is also unable to use the fact that the given name is not in fact// overloaded (and has only one possible interpretation).// This results in improper errors being generated.// keywords: overloading, function pointers, disambiguation, operator?:int i;void (*p)();void function_0 (){}void function_1 (){  p = i ? function_0 : 0;		// gets bogus error  p = i ? 0 : function_0;		// gets bogus error  p = i ? function_1 : function_0;	// gets bogus error}int main () { return 0; }

⌨️ 快捷键说明

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