C++編程經常使用函數-字符串轉整形、十進制轉十六進制(持續更新遇到啥寫啥)

整理了平時經常使用的幾個函數 字符串轉整形 string s; int n; n=atoi(s.c_str()); 這樣就把一個字符串轉化爲整形啦!注意c_str()後面的括號必定不能忘記,由於atoi函數的原型是c++ int atoi(const char *nptr); 而string的c_str()就是獲取string的首地址的!數組 字符數字轉整形 char a; int n; a='9
相關文章
相關標籤/搜索