C++11的字符串与数值间的类型转换:to_string() stoi stol stoul stoll stof stod stold

C++类型转换 
1 再也不用搞C的那一套了,再也不用什么庞大的stringstream了
string的数值转换函数
2 其中,sto*()提供了针对string和wstring的重载
代码:
#include 
#include 
using namespace std;

template
void p(const T& t)
{
	cout<
1000
1000
3.14159
3.14159
请按任意键继续. . .

全部函数如下:http://www.cplusplus.com/reference/string/

C++11的字符串与数值间的类型转换:to_string() stoi stol stoul stoll stof stod stold_第1张图片

boost::lexical_cast

由于效率的问题,不建议使用,参考 boost::lexical_cast

old版本(不建议使用,自己造轮子)

代码:

#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;

template
Result lexical_cast(Para para)
{
    stringstream ss;
    ss<>result;
    return result;
}
//int ACE_TMAIN(int argc, ACE_TCHAR *argv[])
int main(int argc, char *argv[])
{

    double arr[10] = {0.1,1.2,2.3,3.4,4.5,5.6,6.7,7.8,8.9,9.0};
    vector str_arr;
    for (size_t i =0 ; i< sizeof(arr)/sizeof(double) ; ++i)
    {
        str_arr.push_back(lexical_cast(arr[i]));
    }
    ostream_iterator out(cout," ");
    copy(str_arr.begin(),str_arr.end(),out);
    
    return 0;
}

C++11的字符串与数值间的类型转换:to_string() stoi stol stoul stoll stof stod stold_第2张图片


你可能感兴趣的:(C++,11)