ホームページ > バックエンド開発 > C++ > C で std::string と整数を連結するにはどうすればよいですか?

C で std::string と整数を連結するにはどうすればよいですか?

Barbara Streisand
リリース: 2024-12-24 01:43:14
オリジナル
553 人が閲覧しました

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

std::string と int の連結

std::string と int を組み合わせて 1 つの文字列を形成すると、単純な作業。これを実現するための複数のアプローチを次に示します。

1.ブーストの使用

#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. IOStream の使用

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 と整数を連結するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート