第二十五章補充內容 11 關鍵字mutable

2021-09-06 06:28:15 字數 407 閱讀 1914

//第二十五章補充內容 11 關鍵字mutable

//我們知道修飾為const的成員函式,是不能修改類的資料成員的,但是這並不表示它不可以修改經過mutable修飾後的資料成員,關鍵字mutable將其後的資料修飾為可供const成員函式進行修改的資料成員

/*#include #include #include using namespace std;

class a

int add()const //注意這裡是const

void show()const

private:

mutable int x; //你可以試著將這裡的去掉試試nutable

};int main()

return 0;

}*/

第二十五章補充內容 9 關鍵字volatile

第二十五章補充內容 9 關鍵字volatile 用volatile關鍵字宣告的變數,是用來告訴編譯器每次對此變數的引用都需要從記憶體位址中讀取,即取消編譯器對此變數的優化編譯 volatile可以保證對特殊位址的穩定訪問,不會出錯 register暫存器變數 include using namesp...

第二十五章補充內容 10 關鍵字const

第二十五章補充內容 10 關鍵字const const int a int const a const int a int const a int const a const const int a與int const a的作用是一樣的,都表示a是乙個常整型數 const int a意味著a是乙個指...

第二十五章補充內容 10 關鍵字const

第二十五章補充內容 10 關鍵字const const int a int const a const int a int const a int const a const const int a與int const a的作用是一樣的,都表示a是乙個常整型數 const int a意味著a是乙個指...