프로그래밍/C,C++

C++, to_string(x) 숫자를 문자로 변환

gameObject 2023. 7. 18. 08:38
728x90

to_string은 숫자 타입의 데이터를 문자열 타입의 데이터로 변환하도록 해준다.

 

int형 뿐만이 아니라 다양한 숫자타입 자료형을 변환할 수 있도록 되어있다.

long , longlong, unsigned, unsigned long, unsigned long long, float, double 등

 

문법

to_string(int 값);

to_string(long 값);

to_string(float 값);

.

.

.등

 

숫자가 문자열이 된다.

728x90