[C++] to_string
to_string 사용법
#include <string>
헤더를 사용한다.- 기능 : 다른 자료형을
string
으로 만들어 준다.
Example
int a = 1;
int b = 2;
string ab = to_string(a) + to_string(b);
#include <string>
헤더를 사용한다.string
으로 만들어 준다. int a = 1;
int b = 2;
string ab = to_string(a) + to_string(b);
12
가 된다.
Leave a comment