1 개요[ | ]
- C++ String을 int로 변환
2 stoi() ★[ | ]
C++ stoi() 문서를 참고하십시오.
C++
CPU
0.4s
MEM
47M
0.4s
Copy
#include <iostream>
using namespace std;
int main() {
string str = "123";
int n = stoi(str);
cout << n; // 123
}
123
3 atoi()[ | ]
C++
Copy
#include <iostream>
using namespace std;
int main() {
string str = "123";
int n = atoi(str.c_str());
cout << n; // 123
}
Loading
4 stringstream[ | ]
C++
Copy
#include <iostream>
#include <sstream>
using namespace std;
int main() {
string str = "123";
int n;
stringstream ss(str);
ss >> n;
cout << n; // 123
}
Loading
5 같이 보기[ | ]
편집자 Jmnote bot Jmnote
로그인하시면 댓글을 쓸 수 있습니다.