Tag: 词汇演员

非常糟糕的boost :: lexical_cast性能

Windows XP SP3。 酷睿2双核2.0 GHz。 我发现boost :: lexical_cast性能非常慢。 希望find加快代码的方法。 在visual c ++ 2008上使用/ O2优化,并与java 1.6和python 2.6.2比较,我看到下面的结果。 整数铸造: c++: std::string s ; for(int i = 0; i < 10000000; ++i) { s = boost::lexical_cast<string>(i); } java: String s = new String(); for(int i = 0; i < 10000000; ++i) { s = new Integer(i).toString(); } python: […]