반응형
string to int - string에서 int로 변환
atoi()함수 사용. -> atoi(char*)
인자가 char*형이기 때문에 c_str()함수로 변환해주어야함.
string str = "34"; int intValue = atoi(str.c_str());
int to string - int에서 string으로 변환
to_string()함수 사용. -> to_string(int)
int intValue = 5; string str = to_string(intValue);
반응형
'Language, IDE > C, C++' 카테고리의 다른 글
[C++] StringTokenizer (0) | 2013.07.15 |
---|---|
[C++] Thread(쓰레드, 스레드) (9) | 2013.07.08 |
[C++ STL] 벡터(vector) (1) | 2013.07.07 |
[C++] 예외 처리 (Exception) (0) | 2013.07.06 |
[C++] 템플릿(template) (0) | 2013.07.06 |