1.stringstream等物件在標準庫sstream中,非stringstream中
2.字串與整數轉變
字串轉整數
string sinta("1234");
const char *tchar;
tchar=sinta.c_str();
int inta;
inta=atoi(tchar);
整數轉字串
int inta=12345;
stringstream tsinta;
tsinta << inta;
string sinta =tsinta.str();//或者 string sinta; tsinta >> sinta;
3.迴圈內定義的變數迴圈外是不可用的
bool a=true;
while(a)
cout << i;//未定義
for(int i=1;i<2;i++){}
cout<< i;//未定義
//cdt中隱藏控制台
-mwindows 編譯引數加表示無控制台
-mconsole 表示控制台程式
預設不加,兩個都有...
類的定義與使用
class test;
static void t2(){};
//內部定義
void t3()
test::t2(){}
//使用
//預設宣告方式
test t;
t.t1();
t::t2();
t.t2();
//new 方式,用完後可以用delete
test * pt;
pt= new test();
delete pt;
//標準io
strstream a;
string b("dddd");
a << b;
string c;
c class a
a():c(10){};
};class b;
b::b(){}
b::b(const b & b){}
class c
c();
};c::c(){}
//操作符過載
class b
b& operator<<(int b)
};class a
};//非成員普通函式方法實現
//自己通過形參傳入
b& operator-(b & in ,b& s) //b-b
std::istream& operator<<(std::istream & in ,b& s) //cout 一 語法 迴圈 foreach 型別識別符號 in 表示式 code 用法 例子int temp foreach int num in temp 每次從temp取乙個元素賦給num直至取完 console.writeline n num 每行顯示乙個元素 執行結果 c 中唯讀 只寫控制 class ... 1.函式特徵 有函式頭和函式體 接受乙個引數 返回乙個值 需要乙個原型。2.c 命名規則 在名稱中只能使用字母字元 數字和下劃線 名稱的第乙個字元不能是數字 區分大寫字母和小寫字母 不能將c 關鍵字用作名稱 以兩個下劃線或下劃線和大寫字母打頭的名稱被保留給實現 編譯器及其使用的資源 使用,以乙個下劃... 屬性 屬性開頭字母大寫 屬性可以判斷輸入的非法值 屬性本身不儲存值 依靠字段 索引器 using system using system.collections.generic using system.linq using system.text namespace b try catch exc...C 學習筆記( )
C 學習筆記
c 學習筆記