在C++中,atof
函數(shù)用于將字符串轉(zhuǎn)換為浮點(diǎn)數(shù)。當(dāng)傳入空字符串時(shí),atof
會(huì)返回0.0。以下是一個(gè)示例代碼:
#include <iostream>
#include <cstdlib>
int main() {
char str[] = "";
double num = atof(str);
std::cout << "The converted number is: " << num << std::endl;
return 0;
}
在上面的示例中,當(dāng)傳入空字符串時(shí),atof
會(huì)將其轉(zhuǎn)換為浮點(diǎn)數(shù)0.0,并將其存儲(chǔ)在變量num
中。最后,程序會(huì)輸出The converted number is: 0
。