单选题 有如下类定义:
class MyBase
int k;
public:
MyBase(int n=0):k(n)
int value( )constreturn k;

class MyDerived:MyBase
int j;
public:
MyDerived(int i):j(i)
int getK( )eonstreturn k;
int getJ( )constreturn j;

编译时发现有一处语法错误,对这个错误最准确的描述是

【正确答案】 A
【答案解析】[解析] 派生类的成员函数不能访问基类的私有函数。