在C++中,可以使用以下方法將一個字符串轉化為數字:
使用std::stoi函數將字符串轉化為整數。 例如:
#include <iostream>
#include <string>
int main() {
std::string numberStr = "12345";
int number = std::stoi(numberStr);
std::cout << "Converted number: " << number << std::endl;
return 0;
}
使用std::stof函數將字符串轉化為浮點數。 例如:
#include <iostream>
#include <string>
int main() {
std::string numberStr = "3.14";
float number = std::stof(numberStr);
std::cout << "Converted number: " << number << std::endl;
return 0;
}
請注意,如果字符串不能被正確地轉化為數字,將會引發std::invalid_argument或std::out_of_range異常,因此在使用這些函數時應進行錯誤處理。