單項選擇題在保護繼承中,基類中的私有成員作為派生類的()。

A.公有成員
B.私有成員
C.保護成員
D.不可訪問


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題如果一個類至少有一個純虛函數(shù),那么就稱該類是()。

A.抽象類
B.虛基類
C.派生類
D.以上都不對

3.單項選擇題執(zhí)行語句“stringstr("abc");”時,系統(tǒng)會自動調(diào)用string類的構造函數(shù)()。

A.string()
B.string(constchar*s)
C.string(conststring&str)
D.string(size_typen,charc)

4.單項選擇題假設堆內(nèi)存分配均成功,則下面程序段完全正確的是()。

A.int*p=newint(3);cout<;<;*p;deletep;
B.int*p=newint[5]={1,2,3,4,5};for(inti=0;i<;5;i++)cout<;<;p;delete[]p;
C.int*p=newint[5];for(inti=0;i<;5;i++,p++){*p=i;cout<;<;*p;}delete[]p;
D.以上程序段均正確