第五周 閱讀程式 4 const 的用法

2021-06-29 14:56:48 字數 569 閱讀 2539

#include #include using namespace std;

class student

student( const string& nm, int sc = 0 ): name(nm), score(sc){}

//(1)下面的const幹神馬?_______保護資料不被修改______

void set_student( const string& nm, int sc = 0 )

//(2)下面的const分別幹神馬?___定義為常函式_______

const string& get_name() const

int get_score() const

private:

string name;

int score;};

//(3)下面的const幹神馬?_______引用資料,防止資料被修改,起到保護資料的功能______

void output_student(const student& student )

int main()

第五周閱讀程式

1 include using namespace std class base base int m int get void set int m base end int main cout ptr ptr 1 cout 執行結果 執行結果 4 include include using nam...

第五周 閱讀程式(5)

問題描述 本週再補充三個和指標有關的閱讀程式,進一步掌握指標工作的原理。可以在上機時通過單步執行,進一步和你在人腦中執行程式的過程進行對照。5 閱讀程式,寫出程式的執行結果並理解 include using namespace std class myclass myclass static int...

第五周 閱讀程式(2)

檔名稱 test.cpp 作 者 呼亞萍 完成日期 2015年4月6日 版 本 號 v1.0 問題描述 閱讀程式,寫出程式的執行結果並理解 程式輸入 相應的程式 程式輸出 不同程式的結果 include includeusing namespace std class student student...