本文主要是介绍boost lexical_cast,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
boost lexical_cast 实现c语言中的atoi和atof的功能;通知支持反向转化,将数值转换成字符串;例子如下:
#include <boost/lexical_cast.hpp>
using namespace boost;
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int x=lexical_cast<int>("1000");
long y=lexical_cast<long>("2000");
float pai=lexical_cast<float>("3.14159e5");
double e=lexical_cast<double>("2.71865");
cout<< x <<endl;
cout<< y <<endl;
cout<< pai <<endl;
cout<< e <<endl;
string str=lexical_cast<string>("459");
cout<<str<<endl;
cout<< lexical_cast<string>(0.618)<<endl; //输出0.61799999999999999
cout<< lexical_cast<string>(0x10)<<endl;
//int z=lexical_cast<int>("0x100"); //error
//cout<<z<<endl;
return 0;
}
lexical_cast不能转换如"0x100"的字符串,不支持高级的格式控制,不能把数字转换成指定格式的字符串,如需要更高级的格式控制,可以使用
boost::format.
这篇关于boost lexical_cast的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!