În acest tutorial, vom învăța cum să convertim șirul în numere cu virgulă mobilă și invers, cu ajutorul exemplelor.
Șir C ++ pentru plutire și conversie dublă
Cel mai simplu mod de a converti un șir într-un număr cu virgulă mobilă este prin utilizarea acestor funcții C ++ 11 :
- std :: stof () - convertiți
string
înfloat
- std :: stod () - convertiți
string
îndouble
- std :: stold () - convertiți
string
înlong double
.
Aceste funcții sunt definite în string
fișierul antet.
Exemplul 1: șir C ++ pentru a pluti și dubla
#include #include int main() ( std::string str = "123.4567"; // convert string to float float num_float = std::stof(str); // convert string to double double num_double = std::stod(str); std:: cout<< "num_float = " << num_float << std::endl; std:: cout<< "num_double = " << num_double << std::endl; return 0; )
Ieșire
num_float = 123.457 num_double = 123.457
Exemplul 2: C ++ char Array pentru a dubla
Putem converti o char
matrice în double
folosind std::atof()
funcția.
#include // cstdlib is needed for atoi() #include int main() ( // declaring and initializing character array char str() = "123.4567"; double num_double = std::atof(str); std::cout << "num_double = " << num_double << std::endl; return 0; )
Ieșire
num_double = 123.457
C ++ float și conversie dublă în șir
Putem converti float
și double
la string
utilizarea C ++ 11 std::to_string()
funcția. Pentru compilatoarele mai vechi C ++, putem folosi std::stringstream
obiecte.
Exemplul 3: float și dublu la șir Utilizarea to_string ()
#include #include int main() ( float num_float = 123.4567F; double num_double = 123.4567; std::string str1 = std::to_string(num_float); std::string str2 = std::to_string(num_double); std::cout << "Float to String = " << str1 << std::endl; std::cout << "Double to String = " << str2 << std::endl; return 0; )
Ieșire
Plutire la șir = 123.456703 Dublu la șir = 123.456700
Exemplul 4: float și dublu la șir Utilizând stringstream
#include #include #include // for using stringstream int main() ( float num_float = 123.4567F; double num_double = 123.4567; // creating stringstream objects std::stringstream ss1; std::stringstream ss2; // assigning the value of num_float to ss1 ss1 << num_float; // assigning the value of num_float to ss2 ss2 << num_double; // initializing two string variables with the values of ss1 and ss2 // and converting it to string format with str() function std::string str1 = ss1.str(); std::string str2 = ss2.str(); std::cout << "Float to String = " << str1 << std::endl; std::cout << "Double to String = " << str2 << std::endl; return 0; )
Ieșire
Plutire la șir = 123.457 Dublu la șir = 123.457
Citire recomandată: șir C ++ la int.