字符串小技巧
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串小技巧相关的知识,希望对你有一定的参考价值。
31 char s[100]; 32 33 int main() { 34 strcpy(s, "123"); 35 cout << atoi(s) << endl; //atol同atoi 36 37 strcpy(s, "12.3"); 38 cout << atof(s) << endl; //没有atolf 39 40 strcpy(s, "12345678987654321"); 41 cout << atoll(s) << endl; 42 43 return 0; 44 }
以上是关于字符串小技巧的主要内容,如果未能解决你的问题,请参考以下文章