#include<iostream.h>
int a=10;
class CObj
{
public:
CObj()
{
a = b= 0;
}
void display()
{
//********error********
cout<<a<<b<<endl;
}
void func(int a)
{
//********error********
this->a += a;
}
void func2()
{
//********error********
a+=::a;
}
private:
int a,b;
};
void main()
{
CObj obj;
obj.func(3);
obj.display();
obj.func2();
obj.display();
}
输出结果是什么?? 最好步骤详细点!!谢谢各位啦