博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ int与string的转化
阅读量:5330 次
发布时间:2019-06-14

本文共 1770 字,大约阅读时间需要 5 分钟。

int本身也要用一串字符表示,前后没有双引号,告诉编译器把它当作一个数解释。缺省情况下,是当成10进制(dec)来解释,如果想用8进制,16进制,怎么办?加上前缀,告诉编译器按照不同进制去解释。8进制(oct)---前缀加0,16进制(hex)---前缀加0x或者0X。

string前后加上双引号,告诉编译器把它当成一串字符来解释。

注意:对于字符,需要区分字符和字符表示的数值。比如:char a = 8;char b = '8',a表示第8个字符,b表示字符8,是第56个字符。


 int转化为string

1、使用itoa(int to string)

1  //char *itoa( int value, char *string,int radix); 2  // 原型说明: 3  // value:欲转换的数据。 4  // string:目标字符串的地址。 5  // radix:转换后的进制数,可以是10进制、16进制等。 6  // 返回指向string这个字符串的指针 7  8  int aa = 30; 9  char c[8];10  itoa(aa,c,16);11  cout<
<

注意:itoa并不是一个标准的C函数,它是Windows特有的,如果要写跨平台的程序,请用sprintf。

2、使用sprintf

1  // int sprintf( char *buffer, const char *format, [ argument] … ); 2  //参数列表 3  // buffer:char型指针,指向将要写入的字符串的缓冲区。 4  // format:格式化字符串。 5  // [argument]...:可选参数,可以是任何类型的数据。 6  // 返回值:字符串长度(strlen) 7  8  int aa = 30; 9  char c[8]; 10  int length = sprintf(c, "%05X", aa); 11  cout<
<

3、使用stringstream

1  int aa = 30;2  stringstream ss;3  ss<
>s2;9 cout<
<

可以这样理解,stringstream可以吞下不同的类型,根据s2的类型,然后吐出不同的类型。

4、使用boost库中的lexical_cast

1  int aa = 30;2  string s = boost::lexical_cast
(aa);3 cout<
<

3和4只能转化为10进制的字符串,不能转化为其它进制的字符串。


 string转化为int

1、使用strtol(string to long) 

1 string s = "17";2  char* end;3  int i = static_cast
(strtol(s.c_str(),&end,16));4 cout<
<
(strtol(s.c_str(),&end,10));7 cout<
<

2、使用sscanf

1 int i;2  sscanf("17","%D",&i);3  cout<<

3、使用stringstream

1  string s = "17";2 3  stringstream ss;4  ss<
>i;8 cout<
<

注:stringstream可以吞下任何类型,根据实际需要吐出不同的类型。

4、使用boost库中的lexical_cast

1  string s = "17";2  int i = boost::lexical_cast
(s);3 cout<
<

 

转载于:https://www.cnblogs.com/nzbbody/p/3504199.html

你可能感兴趣的文章
Spring Cloud Stream消费失败后的处理策略(三):使用DLQ队列(RabbitMQ)
查看>>
python的猴子补丁monkey patch
查看>>
架构模式: API网关
查看>>
正则验证积累
查看>>
Linux学习-汇总
查看>>
jQuery瀑布流+无限加载图片
查看>>
83. 删除排序链表中的重复元素
查看>>
bzoj1048 [HAOI2007]分割矩阵
查看>>
python中的__init__ 、__new__、__call__等内置函数的剖析
查看>>
Java中的编码
查看>>
PKUWC2018 5/6
查看>>
As-If-Serial 理解
查看>>
MYSQL SHOW VARIABLES简介
查看>>
雷林鹏分享:Redis 简介
查看>>
自卑都是自己不踏实做事的表现
查看>>
C# 网页自动填表自动登录 .
查看>>
netfilter 和 iptables
查看>>
洛谷P1005 矩阵取数游戏
查看>>
Django ORM操作
查看>>
2012年最佳30款免费 WordPress 主题
查看>>