按照老师的方法怎么不行啊?帮我看看呗
#include <iostream> #include <stdlib.h> using namespace std; namespace A { void fun() { cout<<"I"<<endl; } } namespace B { void fun2() { cout<<"Love"<<endl; } } namespace C { void fun3() { cout<<"You"<<endl; } } int main() { cout<<A::fun<<endl; B::fun2; C::fun3; system("pause"); return 0 ; }
为毛不是显示 I Love You ? 运行之后显示