const成員函式的定義:需要在函式的宣告及定義的後邊加上const關鍵字
const物件只能呼叫const成員函式
const成員函式只能呼叫const成員函式
const成員函式中不能改變成員變數的值
class Key {
int key;
public:
Key (int x = 0);//函式
int the_key( ) const;
};
bool operator == (const Key &x, const Key &y);
//防止圖裂再傳一遍
https://blog.csdn.net/lms1008611/article/d...
本作品採用《CC 協議》,轉載必須註明作者和本文連結