//第二十五章補充內容 9 關鍵字volatile
//用volatile關鍵字宣告的變數,是用來告訴編譯器每次對此變數的引用都需要從記憶體位址中讀取,即取消編譯器對此變數的優化編譯
//volatile可以保證對特殊位址的穩定訪問,不會出錯
//register暫存器變數
/*#include using namespace std;
int dquare(volatile int *p)
int func(int n)
return s;
}int main()
*///實際上,許多編譯程式都會忽略register修飾符,因為儘管它完全合法,但是它僅僅是暗示而不是命令
第二十五章補充內容 11 關鍵字mutable
第二十五章補充內容 11 關鍵字mutable 我們知道修飾為const的成員函式,是不能修改類的資料成員的,但是這並不表示它不可以修改經過mutable修飾後的資料成員,關鍵字mutable將其後的資料修飾為可供const成員函式進行修改的資料成員 include include include ...
第二十五章補充內容 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是乙個指...