为什么在外部成员函数定义中编写class name
两次有效?
示例:
#include <iostream>
using namespace std;
class test
{
public:
void get();
};
void test::test::get()
{
cout<<"Get() called";
}
int main( )
{
test a;
a.get();
return 0;
}
为什么test::test::get()
有效?