2009年8月15日 星期六

C/C++筆記-變數儲存類別

變數儲存類別
1.extern
extern int a;
// 代表變數a是另一個檔案所宣告的變數

2.register
register int i;
// 變數i存取會較快

3.static
static int x=0;
// 在不同區域重複命名,都是共用同一個變數x

4.const
const x=1;
// 常數x值無法變更

##ShowAll##

0 意見 :

張貼留言