首頁 > 後端開發 > 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();
登入後複製
5.使用IOStreams

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.使用itoa

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;
登入後複製
7.使用sprintf

#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);
登入後複製
8.使用STLSoft的integer_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);
登入後複製
9.使用STLSoft的winstl::int_to_string()

#include <Poco/NumberFormatter.h>

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

std::string result = name + Poco::NumberFormatter().format(age);
登入後複製
10。使用 Poco NumberFormatter

以上是如何在 C 中連接 std::string 和 Integer ?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板