在下面的代码中,g++ 给出了这个错误: 1.cpp: In member function void W::test()':
1.cpp:6: error:
int F::glob' is private 1.cpp:19: error: within this context
但是,这里不应该使用全局声明的变量“glob”,而不是“私有”“glob”吗?
#include <iostream.h>
int glob;
class F
{
int glob;
public:
void readIt()
{
cin >> glob;
}
};
class W : public F
{
public:
void test()
{
glob--;
}
};
int main()
{
}