首页 > 后端开发 > C++ > 如何在 C 中连接 std::string 和 Integer ?

如何在 C 中连接 std::string 和 Integer ?

Barbara Streisand
发布: 2024-12-24 01:43:14
原创
557 人浏览过

How Can I Concatenate a std::string and an Integer in C  ?

连接 std::string 和 int

组合 std::string 和 int 形成单个字符串可以是简单的任务。以下是实现此目的的多种方法:

1。使用Boost

#include <boost/lexical_cast.hpp>

std::string name = "John";
int age = 21;

std::string result = name + boost::lexical_cast<std::string>(age);
登录后复制

2.使用 C 11

std::string name = "John";
int age = 21;

std::string result = name + std::to_string(age);
登录后复制

3。使用 FastFormat

#include <fastformat/format.hpp>

std::string name = "John";
int age = 21;

std::string result;
fastformat::fmt(result, "{0}{1}", name, age); // FastFormat.Format
fastformat::write(result, name, age); // FastFormat.Write
登录后复制

4.使用 {fmt} 库

#include <fmt/core.h>

std::string name = "John";
int age = 21;

std::string result = fmt::format("{}{}", name, age);
登录后复制

5.使用 IOStreams

std::string name = "John";
int age = 21;

std::stringstream sstm;
sstm << name << age;
std::string result = sstm.str();
登录后复制

6.使用 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);
登录后复制

7.使用 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;
登录后复制

8.使用STLSoft的integer_to_string

#include <stlsoft/integer_to_string.hpp>

std::string name = "John";
int age = 21;

char numstr[21]; // enough to hold all numbers up to 64-bits
std::string result = name + stlsoft::integer_to_string(numstr, 21, age);
登录后复制

9.使用STLSoft的winstl::int_to_string()

#include <stlsoft/winstl/int_to_string.hpp>

std::string name = "John";
int age = 21;

std::string result = name + winstl::int_to_string(age);
登录后复制

10。使用 Poco NumberFormatter

#include <Poco/NumberFormatter.h>

std::string name = "John";
int age = 21;

std::string result = name + Poco::NumberFormatter().format(age);
登录后复制

以上是如何在 C 中连接 std::string 和 Integer ?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板