当前位置:  开发笔记 > 编程语言 > 正文

在char*中附加一个int

如何解决《在char*中附加一个int》经验,为你挑选了2个好方法。

你会如何char*在c ++中附加一个整数?



1> Jeremy Ruten..:

首先将int转换为char*使用sprintf():

char integer_string[32];
int integer = 1234;

sprintf(integer_string, "%d", integer);

然后将其附加到您的其他字符*,使用strcat():

char other_string[64] = "Integer: "; // make sure you allocate enough space to append the other string

strcat(other_string, integer_string); // other_string now contains "Integer: 1234"



2> Sydius..:

你也可以使用stringstreams.

char *theString = "Some string";
int theInt = 5;
stringstream ss;
ss << theString << theInt;

然后可以使用访问该字符串 ss.str();

推荐阅读
牛尾巴2010
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有