C++ 中的 const 物件與 const 成員函式

Stephen_X_x發表於2019-05-12

 const成員函式的定義:需要在函式的宣告定義後邊加上const關鍵字
const物件只能呼叫const成員函式
const成員函式只能呼叫const成員函式
const成員函式中不能改變成員變數的值
C++ 中的 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/details/81407586

相關文章