>백엔드 개발 >C++ >C에서 std::string과 Integer를 어떻게 연결할 수 있나요?

C에서 std::string과 Integer를 어떻게 연결할 수 있나요?

Barbara Streisand
Barbara Streisand원래의
2024-12-24 01:43:14594검색

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

std::string과 int를 연결

std::string과 int를 결합하여 단일 문자열을 형성하는 것은 다음과 같습니다. 간단한 작업. 이를 달성하기 위한 다양한 접근 방식은 다음과 같습니다.

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과 Integer를 어떻게 연결할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.