在C++中,可以使用std::atoi
函數來將字符串轉換為整數。以下是使用std::atoi
函數的示例:
#include <iostream>
#include <cstdlib>
int main() {
const char* str = "12345";
int num = std::atoi(str);
std::cout << "Converted string to integer: " << num << std::endl;
return 0;
}
在上面的示例中,我們首先包含了<cstdlib>
頭文件,然后定義了一個字符串str
,然后使用std::atoi
函數將字符串轉換為整數并將結果存儲在num
變量中。最后,我們使用std::cout
打印轉換后的整數。