C++11 --- 数值类型和字符串之间的转换
Posted Overboom
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++11 --- 数值类型和字符串之间的转换相关的知识,希望对你有一定的参考价值。
在 C++11 中提供了专门的类型转换函数,可以方便的进行数值类型和字符串类型的转换
1. 数值转换为字符串
使用 to_string() 方法可以非常方便地将各种数值类型转换为字符串类型,这是一个重载函,函数声明位于头文件 中,函数原型如下:
// 头文件 <string>
string to_string (int val);
string to_string (long val);
string to_string (long long val);
string to_string (unsigned val);
string to_string (unsigned long val);
string to_string (unsigned long long val);
string to_string (float val);
string to_string (double val);
string to_string (long double val);
to_string使用示例如下:
#include <iostream>
#include <string>
using namespace std;
int main()
string pi = "pi is " + to_string(3.1415926);
string love = "love is " + to_string(5.20 + 13.14);
cout << pi << endl;
cout << love << endl;
return 0;
2. 字符串转换为数值
由于 C++ 中的数值类型包括整形和浮点型,因此针对于不同的类型提供了不同的函数,通过调用这些函数可以将字符串类型转换为对应的数值类型。
// 定义于头文件 <string>
int stoi( const std::string& str, std::size_t* pos = 0, int base = 10 );
long stol( const std::string& str, std::size_t* pos = 0, int base = 10 );
long long stoll( const std::string& str, std::size_t* pos = 0, int base = 10 );
unsigned long stoul( const std::string& str, std::size_t* pos = 0, int base = 10 );
unsigned long long stoull( const std::string& str, std::size_t* pos = 0, int base = 10 );
float stof( const std::string& str, std::size_t* pos = 0 );
double stod( const std::string& str, std::size_t* pos = 0 );
long double stold( const std::string& str, std::size_t* pos = 0 );
参数解析:
str:要转换的字符串
pos:传出参数,记录从哪个字符开始无法继续进行解析,比如: 123abc, 传出的位置为 3
base:若 base 为 0 ,则自动检测数值进制:若前缀为 0 ,则为八进制,若前缀为 0x 或 0X,则为十六进制,否则为十进制。
使用示例:
#include <iostream>
#include <string>
using namespace std;
int main()
string str1 = "45";
string str2 = "3.14159";
string str3 = "9527 with words";
string str4 = "words and 2";
int myint1 = std::stoi(str1);
float myint2 = std::stof(str2);
int myint3 = std::stoi(str3);
// 错误: 'std::invalid_argument'
// int myint4 = std::stoi(str4);
cout << "std::stoi(\\"" << str1 << "\\") is " << myint1 << endl;
cout << "std::stof(\\"" << str2 << "\\") is " << myint2 << endl;
cout << "std::stoi(\\"" << str3 << "\\") is " << myint3 << endl;
// cout << "std::stoi(\\"" << str4 << "\\") is " << myint4 << endl;
编译输出:
以上是关于C++11 --- 数值类型和字符串之间的转换的主要内容,如果未能解决你的问题,请参考以下文章