>백엔드 개발 >C++ >C에서 문자열과 정수를 결합하는 방법은 무엇입니까?

C에서 문자열과 정수를 결합하는 방법은 무엇입니까?

Linda Hamilton
Linda Hamilton원래의
2025-01-02 21:43:42862검색

How to Combine Strings and Integers in C  ?

C에서 문자열과 정수를 연결하는 방법

C에서 문자열과 정수를 연결하는 방법은 여러 가지가 있습니다. 다음은 몇 가지 일반적인 방법입니다.

1. Boost의 lexical_cast 사용

std::string name = "John";
int age = 21;
std::string result = name + boost::lexical_cast<std::string>(age);

2. C 11의 to_string()

std::string name = "John";
int age = 21;
std::string result = name + std::to_string(age);

사용3. FastFormat 사용

std::string name = "John";
int age = 21;
std::string result;
fastformat::fmt(result, "{0}{1}", name, age);

4. IOStream 사용

std::string name = "John";
int age = 21;
std::stringstream sstm;
sstm << name << age;
std::string result = sstm.str();

5. 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);

6. 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;

위 내용은 C에서 문자열과 정수를 결합하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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