1.常量--在類中使用常量
[cpp]
#include
using namespace std;
class a
}; int main()
#include
using namespace std;
class a
};int main()
上面的程式在編譯時報錯,類中用const定義的成員變數只能在建構函式中初始化進行初始化。
[cpp]
#include
using namespace std;
class a
// 常量變數只能在建構函式,普通方法無法設定size
//編譯無未能通過
void setsize(int size)
}; #include
using namespace std;
class a
// 常量變數只能在建構函式,普通方法無法設定size
//編譯無未能通過
void setsize(int size)
};2.函式返回值
[cpp]
#include
using namespace std;
char *getstr()
int main()
#include
using namespace std;
char *getstr()
int main()
在getstr()中定義了乙個區域性字元陣列,裡面存放字串"abc"。返回p的首位址,為什麼輸出的結果是亂碼。因為在p是在getstr()內部定義的,區域性變數是在記憶體的棧區分配的記憶體,其作用在函式體的內部。函式體結束後,棧區的容自動釋放。所以在main函式輸出的是亂碼。
[cpp]
#include
using namespace std;
char *getstr()
int main()
#include
using namespace std;
char *getstr()
int main()
在上面的程式可知t和p指向同一位址。但是在getstr()變數作用域只在函式體內。所以在main函式中輸出與p同一位址的內容是亂碼
[cpp]
C 學習筆記( )
一 語法 迴圈 foreach 型別識別符號 in 表示式 code 用法 例子int temp foreach int num in temp 每次從temp取乙個元素賦給num直至取完 console.writeline n num 每行顯示乙個元素 執行結果 c 中唯讀 只寫控制 class ...
C 學習筆記
1.函式特徵 有函式頭和函式體 接受乙個引數 返回乙個值 需要乙個原型。2.c 命名規則 在名稱中只能使用字母字元 數字和下劃線 名稱的第乙個字元不能是數字 區分大寫字母和小寫字母 不能將c 關鍵字用作名稱 以兩個下劃線或下劃線和大寫字母打頭的名稱被保留給實現 編譯器及其使用的資源 使用,以乙個下劃...
c 學習筆記
屬性 屬性開頭字母大寫 屬性可以判斷輸入的非法值 屬性本身不儲存值 依靠字段 索引器 using system using system.collections.generic using system.linq using system.text namespace b try catch exc...