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

后端 未结 3 675
礼貌的吻别
礼貌的吻别 2021-02-12 10:52

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:21

    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++.

提交回复
热议问题