Maison >développement back-end >C++ >Comment convertir des nombres et des chaînes en C ?
Pour convertir un entier en chaîne en C, utilisez le std :: Fonction to_string :
std::string intToString = std::to_string(123);
Pour convertir une chaîne en entier, utilisez la fonction std::stoi :
int stringToInt = std::stoi("456");
Pour les nombres à virgule flottante , utilisez la fonction std::to_string :
std::string floatToString = std::to_string(12.34);
Pour convertir une chaîne en nombre à virgule flottante, utilisez la fonction std::stof :
float stringToFloat = std::stof("56.78");
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!