黑馬程序員匠心之作|C++教程從0到1入門編程--練習-結構體中const的使用

#include #include using namespace std; struct Student { string name; int age; int score; }; //將函數中的形參改爲指針,可以減少內存空間,而且不會複製新的副本出來 void prinarr(const Student *p) { //p->score = 80;//形參加了const修飾之後,一旦有修改的操
相關文章
相關標籤/搜索