overload1.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 34 行

C
34
字号
// Unqualified lookup should find all functions.// Duplicates are ignored as long as they lose during overload resolution.namespace A{  int f(){    return 1;  }  int f(double);}namespace B{  int f(int){    return 2;  }  int f(double);}int f(int,int){  return 3;}using namespace A;using namespace B;int main(){  if(f() != 1)    return 1;  if(f(1) != 2)    return 1;  if(f(0,0) != 3)    return 1;  return 0;}

⌨️ 快捷键说明

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