下面的代码编译时没有任何警告或错误:
#include <iostream>
using namespace std;
class demo_class
{
int x;
float y;
public:
void fun(void);
};
void fun2(void)
{
cout<<"i am fun2\n";
}
void demo_class::fun(void)
{
cout<<"i am fun\n";
cout<<"i can call fun2\n";
fun2();
}
int main()
{
demo_class ob1;
ob1.fun();
return 0;
}
我不明白,因为fun函数的作用域仅在demo_class中
那么如何调用fun2函数,它是否不应该显示错误,因为仅在demo_class中访问fun函数?
最佳答案
Name lookup会尝试检查所有可能的作用域,直到在任何作用域中至少找到一个,然后名称查找停止。
在这种情况下,无法在类范围内找到名称fun2
,然后再检查进一步的范围,即globle范围并找到::fun2
。