题目内容
有如下程序:#include using namespace std;class AA{int k;protected:int n;void setK(int k){ this->k=k;}public:void setN(int n){ this->n=n;}};class BB: public AA{/*类体略*/};int main(){BB x;x.n=1; // ①x.setN(2); // ②x.k=3;// ③x.setK(4); // ④return 0;}在标注号码的四条语句中正确的是()。
查看答案
搜索结果不匹配?点我反馈
更多问题