首页 >后端开发 >C++ >如何在 C 中组合字符串和整数?

如何在 C 中组合字符串和整数?

Linda Hamilton
Linda Hamilton原创
2025-01-02 21:43:42880浏览

How to Combine Strings and Integers in C  ?

如何在 C 中连接字符串和整数

在 C 中连接字符串和整数可以通过多种方式完成。以下是一些常用的方法:

1.使用Boost的lexical_cast

std::string name = "John";
int age = 21;
std::string result = name + boost::lexical_cast<std::string>(age);

2.使用 C 11 的 to_string()

std::string name = "John";
int age = 21;
std::string result = name + std::to_string(age);

3.使用 FastFormat

std::string name = "John";
int age = 21;
std::string result;
fastformat::fmt(result, "{0}{1}", name, age);

4.使用 IOStreams

std::string name = "John";
int age = 21;
std::stringstream sstm;
sstm << name << age;
std::string result = sstm.str();

5.使用 itoa()

std::string name = "John";
int age = 21;
char numstr[21]; // enough to hold all numbers up to 64-bits
std::string result = name + itoa(age, numstr, 10);

6.使用 sprintf()

std::string name = "John";
int age = 21;
char numstr[21]; // enough to hold all numbers up to 64-bits
sprintf(numstr, "%d", age);
std::string result = name + numstr;

以上是如何在 C 中组合字符串和整数?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn