What's the difference between std::to_string, boost::to_string, and boost::lexical_cast?

后端 未结 3 1856
半阙折子戏
半阙折子戏 2021-02-12 10:41

What\'s the purpose of boost::to_string (found in boost/exception/to_string.hpp) and how does it differ from boost::lexical_cast

3条回答
  •  死守一世寂寞
    2021-02-12 11:17

    Here is a benchmark that I found for the integer to string conversion, hope it doesn't change much for float and double Fast integer to string conversion benchmark in C++.

提交回复
热议问题