1. int를 string으로 변환하기: to_string()함수
#include <string>
int a = 234;
string str = to_string(a);
2. string 연결하기: + 연산자
string str1 = "my";
string str2 ="apple";
str1 += str2;
cout << str1;
// result: myapple
'언어 > C&C++ 응용' 카테고리의 다른 글
[C++] STL vector (0) | 2021.06.22 |
---|---|
[C++ 템플릿] 스택(stack), 큐(queue), 우선순위 큐(priority_queue) (0) | 2021.06.14 |
[TS] Invalid address specified to RTlValidateHeap & DLL개념 (0) | 2021.06.14 |
[C] 이중포인터 (0) | 2021.06.14 |
[TS] strcpy, strcpy_s (0) | 2021.06.14 |