auto string = "Hello World"s;
; 리터럴 뒤에 s를 붙이지 않으면 const char* 타입으로 취급된다.
toString(type value);
; 숫자를 string으로 변환
int stoi(string);
long stol(string);
unsigned long stoul(string);
long long stoll(string);
unsigned long long stoull(string);
float stof(string);
double stod(string);
long double stold(string);
; string을 숫자로 변환
'::public > C++' 카테고리의 다른 글
const (0) | 2020.01.31 |
---|---|
[오류] C3867 비표준 구문입니다. '&'를 사용하여 멤버 포인터를 만드세요. (0) | 2019.12.15 |
<iostream> (0) | 2019.06.20 |
STL map (0) | 2019.06.17 |
STL algorithmn (0) | 2019.06.13 |