转换为 std::string 时,如何使 boost::lexical_cast 包含正号?
使用boost::lexical_cast<>
.
boost::lexical_cast<>
使用流进行格式化。因此,可以创建一个新类并为其重载operator<<
,boost::lexical_cast<>
并将使用该重载运算符来格式化类的值:
#include <boost/lexical_cast.hpp>
#include <iomanip>
#include <iostream>
template<class T> struct ShowSign { T value; };
template<class T>
std::ostream& operator<<(std::ostream& s, ShowSign<T> wrapper) {
return s << std::showpos << wrapper.value;
}
template<class T>
inline ShowSign<T> show_sign(T value) {
ShowSign<T> wrapper = { value };
return wrapper;
}
int main() {
std::string a = boost::lexical_cast<std::string>(show_sign(1));
std::cout << a << '\n';
}