C에서 문자열과 정수를 연결하는 것은 일반적인 작업이지만 가장 효율적이고 효율적인 방법을 찾기가 까다로울 수 있습니다. 간결한 방법. 이를 달성하기 위해 다양한 방법을 사용할 수 있으며 성능, 안전성, 플랫폼 호환성 등의 요소에 따라 선택이 달라집니다.
1. Boost의 lexical_cast 사용:
#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::to_string:
#include <iostream> std::string name = "John"; int age = 21; std::string result = name + std::to_string(age);
사용3. FastFormat.Format 사용:
#include <FastFormat.h> std::string name = "John"; int age = 21; std::string result; fastformat::fmt(result, "{0}{1}", name, age);
4. FastFormat.Write 사용:
#include <FastFormat.h> std::string name = "John"; int age = 21; std::string result; fastformat::write(result, name, age);
5. {fmt} 라이브러리 사용:
#include <fmt/format.h> std::string name = "John"; int age = 21; std::string result = fmt::format("{}{}", name, age);
6. IOStream 사용:
#include <iostream> #include <sstream> std::string name = "John"; int age = 21; std::stringstream sstm; sstm << name << age; std::string result = sstm.str();
7. itoa 사용:
#include <cstdio> 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);
8. sprintf 사용:
#include <cstdio> 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;
9. STLSoft의 정수_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);
10. STLSoft의 Winstl::int_to_string():
#include <wintlsoft/int_to_string.h> std::string name = "John"; int age = 21; std::string result = name + winstl::int_to_string(age);
사용11. Poco의 NumberFormatter 사용:
#include <Poco/NumberFormatter.h> std::string name = "John"; int age = 21; std::string result = name + Poco::NumberFormatter().format(age);
각 방법의 성능, 안전성 및 호환성 특성은 특정 요구 사항에 가장 적합한 접근 방식을 선택하는 데 도움이 되도록 자세히 설명되어 있습니다.
위 내용은 C에서 문자열과 정수를 어떻게 효율적으로 연결할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!