要將整數轉換為C 中的字串,請使用std:: to_string函數:
std::string intToString = std::to_string(123);
要將字串轉換為整數,請使用std::stoi 函數:
int stringToInt = std::stoi("456");
對於浮點數,使用std::to_string函數:
std::string floatToString = std::to_string(12.34);
要將字串轉換為浮點數,請使用 std::stof 函數:
float stringToFloat = std::stof("56.78");
以上是如何在 C 中轉換數字和字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!