itoa() 없이 C에서 정수를 문자열로 변환
질문:
다음을 구합니다. C에서 정수를 문자열로 변환하기 위한 itoa()의 대안입니다. Visual Studio의 경고 및 Linux의 컴파일 오류.
답변:
다행히 C는 다양한 솔루션을 제공합니다.
C 11 및 Beyond:
std::to_string: 이 함수는 정수를 문자열로 직접 변환합니다.
#include <string> int i = 5; std::string s = std::to_string(i);
Pre-C 11:
C Streams: 다음 스트림 조작을 활용하세요.
#include <sstream> int i = 5; std::stringstream out; out << i; std::string s = out.str();
문제의 예는 http://notfaq.wordpress.com/2006/08/30/c-convert-int-to-string/에서 수정되었습니다.
위 내용은 itoa() 없이 C에서 정수를 문자열로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!