參考:
string -> int
string str
("123");
int ret =
atoi
(str.
c_str()
);
int -> string
c++11中可以用to_string
int x =
123;
string str =
to_string
(x);
參考:
cout <<
(const
void
*)char_pointer << endl;
參考:
#include
#include
//睡眠233ms
std::this_thread::
sleep_for
(std::chrono::
milliseconds
(233))
;
參考:
文件:
#include
regular expression
c++預設使用ecmascript的正規表示式文法。
教程:判斷是否為格式為yyyy-mm-dd的日期
#include
#include
using
namespace std;
const regex regex_date
("\\d-\\d-\\d");
bool
validdate
(const string& s)
intmain()
輸出:
100
00
搜尋出所有連續的數字。
#include
#include
using
namespace std;
intmain()
cout << endl <<
"position: "
<< m.
position()
<< endl <<
"length: "
<< m.
length()
<< endl;
now +
= m.
position()
+ m.
length()
;}cout << endl;
string str
("(123, 456), (789, 452)");
smatch sm;
while
(regex_search
(str, sm, e)
) cout << endl;
str = sm.
suffix()
.str()
;}return0;
}
輸出:
123
position: 1
length: 3
456
position: 2
length: 3
789
position: 4
length: 3
452
position: 2
length: 3
123
456
789
452
#include
#include
using
namespace std;
intmain()
輸出:
abc233efg233233
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...