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 サイトの他の関連記事を参照してください。