<개인공부>/[C++]

[C++] stoi, stof, stol, stod 함수에 대해서 (string to int)

BlockDMask 2019. 3. 16. 19:28
반응형

안녕하세요. BlockDMask 입니다.

지난시간에는 C/C++에 기존에 존재하던 atoi, atof, atol등 char* 타입의 문자열을 정수로, 실수로 (=숫자로) 변경하는 함수에 대해서 살펴 보았습니다.

오늘은! C++11에서 부터 새롭게 생긴 C++의 string 클래스를 정수로, 실수로 변경해주는 stoi, stof, stol, stod 함수에 대해서 알아볼것 입니다.

 

(char* -> int 로 바꾸는 것을 보고싶다면, [바로가기])

(string -> char* -> int 로 바꾸는 것을 보고싶다면, [바로가기])(int -> string 으로 바로 바꾸는 것을 보고싶다면 [바로가기])

 

1. C++에서 string 타입의 문자열을 숫자로 바꾸는 함수들의 이름.

이제 드디어 string -> c_str() 함수 이용 -> char* -> atoi 함수이용 -> int 이런 번거로운 짓을 하지 않아도 바로 string -> int 로 변경이 가능합니다.바로 아래 함수들 덕분입니다. (wow 소리질러!!)
C++11 부터 아래 함수들을 사용할 수 있습니다.

stoi = string to int

stof = string to float

stol = string to long

stod = string to double
아래처럼 다른것들도 있지만 많이 사용하진 않아서요.위에 4개(stoi, stof, stol, stod)에 대해서만 다루겠습니다.stoul = string to unsigned intstoll = string to long longstoull = string to unsigned long longstold = string to long double

2. C++ stoi, stof, stol, stod 함수 원형과 매개변수가 뜻하는 것

 

▼ 함수 원형

1) 정수형

int stoi(const string& str, size_t* idx = 0, int base = 10)

long stol(const string& str, size_t* idx = 0, int base = 10)

 

2) 실수형

float stof(const string& str, size_t* idx = 0)

double stod(const string& str, size_t* idx = 0)

 

매개변수가 뜻하는 것들

함수원형1 : int stoi(const string& str, size_t* idx =0, int base = 10);

함수원형2 : float stof(const string& str, size_t* idx = 0);

 

첫번째 인자 : const string& str: 변경할 문자열이 들어가게 됩니다.: 문자열 복사의 비용이 들어가지 않도록 & (reference)를 이용해서 넘기게 됩니다.: 또한 함수 내부에서 변경이 일어나지 않음을 보장하기 위해서 const 상수 취급해서 넘기게 됩니다.
두번째 인자 : size_t* idx = 0: 두번째는 포인터 타입인데요. 맨 첫번째 부터 숫자가 아닌 부분까지 해서 그부분의 포인터를 걸러줍니다.: 세번째 인자까지 사용하는데, 두번째 인자는 사용하지 않겠다 하면 nullptr을 넣으면됩니다.: 설명하기 좀 어려운데 간단히 예를 들어볼게요. (using namespace std 했다고 치고)string str = "33blockdmask";size_t sz;int a = stoi(str, &sz);이런식으로 이라면 int a 에는 33이 들어가고, str[0] = 3str[1] = 3str[2] = b이기 때문에 size_t 

sz 에는 2가 들어가게 됩니다.

자세한건 예제 2번에서 보여드리겠습니다.

 

세번째 인자 : int base = 10 (정수형에만 존재): base 는 진수를 뜻하는 것입니다.: default가 10으로 되어있잖아요. 이것은 10진수가 기본이라는 뜻입니다.: string 안에 있는 숫자의 표현이 어떤것이다 라고 base 를 통해서 알려주는 것 입니다.: binary (2진수)이라면 2를 넣고: octal (8진수)이라면 8을 넣고: decimal (10진수)는 기본이니까 넣지 않아도 됩니다. 굳이 10을 넣는다 해도 무관합니다.: hexadecimal (16진수)이라면 16을 넣으시면 됩니다.: 간단하게 예를 들어보면string str = "0x32" //16진수 표현법 이잖아요.string 내부에 있는게 16진수로 되어있을꺼야 그니까 그걸 int 타입으로 바꾸어주렴그것을 이렇게 stoi(str, nullptr, 16) 표현해 주는 것 입니다.

3. C++ stof, stol, stoi, stod 함수 예제1 (기본 사용법)

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//[C++] stirng to integer example1
//BlockDMask
 
#include<iostream>
#include<string> //need this
using namespace std;
int main(void)
{
    string str_i = "22";
    string str_li = "2144967290";
    string str_f = "3.4";
    string str_d = "2.11";
 
    //int i = str_i;    //error
    int i       = stoi(str_i);
    long int li = stol(str_li);
    float f     = stof(str_f);
    double d    = stod(str_d);
 
    //C++ cout
    cout << "stoi : " << i    << endl;
    cout << "stol : " << li  << endl;
    cout << "stof : " << f    << endl;
    cout << "stod : " << d    << endl;
 
    cout << endl;
    //C, C++ printf
    printf("stoi : %d\n", i);
    printf("stol : %ld\n", li);
    printf("stof : %f\n", f);
    printf("stod : %lf\n", d);
 
    cout << endl;
    system("pause");
    return 0;
}
cs

 

▲ 예제 1번의 결과

결과를 보면 string이 숫자로 잘 바뀌는 것을 알 수 있습니다. 이제 잘 사용해봅시다!

 

4. C++ stoi, stol, stod, stof 함수 예제2 (매개변수들을 이용한 응용 사용법)

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//[C++] stirng to integer example2
//BlockDMask
 
#include<iostream>
#include<string> //need this
using namespace std;
int main(void)
{
    //mixed string
    string str1 = "33BlockDMask";
 
    //test1
    int num1 = stoi(str1);
    cout << "test1. stoi(str1);" << endl;
    cout << " - str1 : " << str1 << endl;
    cout << " - num1 : " << num1 << endl;
    cout << endl;
 
    //test2
    size_t sz;
    int num2 = stoi(str1, &sz);
    cout << "test2. stoi(str1, &sz);" << endl;
    cout << " - str1 : " << str1 << endl;
    cout << " - num2 : " << num2 << endl;
    cout << " - sz : " << sz << endl;
    cout << " - str1[sz] : " << str1[sz] << endl;
    cout << " - str1.substr(sz) : " << str1.substr(sz) << endl;
 
    cout << endl;
    //test3
    string str2 = "";
    cout << "test3. stoi(str2, nullptr, base);" << endl;
    
    //string binary -> int
    str2 = "1110";
    cout << " - stoi(1110, nullptr, 2) : " << stoi(str2, nullptr, 2<< endl;
    
    //string oct -> int
    str2 = "014";
    cout << " - stoi(014 , nullptr, 8) : " << stoi(str2, nullptr, 8<< endl;
 
    //string hex -> int
    str2 = "0x14";
    cout << " - stoi(0x14, nullptr, 16) : " << stoi(str2, nullptr, 16<< endl;
    
    cout << endl;
    system("pause");
    return 0;
}
cs

 

▲예제 2번의 결과.

자세히 살펴 보아야합니다. 그래야 정확히 알고 사용할 수 있죠.Test1)string str1 = "33BlocKDMask" 이기 때문에 처음부터 숫자로 인식되는 끝까지 33까지만 숫자로 변환 된 것 입니다.
Test2)string str1 = "33BlockDMask"인 상태에서 숫자가 아닌 게 처음 나오는것은 3번째 "B"입니다.이게 index로 표현하면 0, 1, 2 이니까 sz = 2가 맞겠죠?그리고 str1[0] = 3, str1[1] = 3, str1[2] = B 이기 때문에 str1[sz] = B 가 나오는 것입니다.마지막으로 string.substr 은 인자로 들어온 곳 부터 문자열을 가지고 오는 것 이기 때문에 BlockDMask 문자열이 출력 되는 것입니다.substr같이 멤버 변수들은 다른 포스팅에서 다루겠습니다. (커밍 순)
Test3)string str2 = "1110";stoi(str2, nullptr, 2); 이걸보면 string에 있는 숫자를 2진수라고 생각하고 int 로 바꾸어 주어라. 라는 것 입니다.

 

정확하고 최대한 쉽게 알려드리기 위해서 많은 시간을 들였습니다.

그만큼 도움이 되었길 바라겠습니다. 

감사합니다.

 

반응형