判斷題定義在類體內(nèi)的成員函數(shù)是內(nèi)聯(lián)函數(shù),定義在類體外的成員函數(shù)不能是內(nèi)聯(lián)函數(shù)。

您可能感興趣的試卷

你可能感興趣的試題

3.單項選擇題二進制數(shù)據(jù)文件流fdat讀指針移到文件頭的語句是()

A.fdat.seekg(0,ios::beg);
B.fdat.tellg(0,ios::beg);
C.fdat.seekp(0,ios::beg);
D.fdat.tellp(0,ios::beg);

4.單項選擇題設已定義浮點型變量data,以二進制代碼方式把data的值寫入輸出文件流對象outfile中,正確的語句是()

A.outfile.write((double*)&data,sizeof(double));
B.outfile.write((double*)&data,data);
C.outfile.write((char*)&data,sizeof(double));
D.outfile.write((char*)&data,data);

5.單項選擇題能實現(xiàn)刪除文件功能的語句是()

A.ofstream fs("date.dat",ios::trunc);
B.ifstream fs("date.dat",ios::trunc);
C.ofstream fs("date.dat",ios::out);
D.ifstream fs("date.dat",ios::in);