码迷,mamicode.com
首页 > 其他好文 > 详细

字符串转整形

时间:2018-12-18 20:34:23      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:pre   style   har   ++   用法   const   amp   整型   class   

1.c_str()的用法:

C中没有string,所以函数c_str()就是将C++的string转化为C的字符串数组,c_str()生成一个const char *指针,指向字符串的首地址。

char *p=s[10];

string a="welcome";

strcpy(p,a.c_str());

cout<<p;

2.字符串转整型:

  1.

int cnt=0;
while(s[i]>=0&&s[i]<=9)
        cnt=cnt*10+s[i++]-0;

  2.

#include<stdlib.h>
    char str[]= "1024";
    a = atoi(str);

3.字符串转浮点型:

#include<stdlib.h>
    a=atof(str);

 

字符串转整形

标签:pre   style   har   ++   用法   const   amp   整型   class   

原文地址:https://www.cnblogs.com/astonc/p/10139663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!