我遇到了格式化用户定义类型的问题,最后得到了一个基于fmt文档的简单示例。
struct point_double {
double x, y;
operator const char*() const {
return nullptr;
}
};
namespace fmt {
template <>
struct formatter<point_double> {
template <typename ParseContext>
constexpr auto parse(ParseContext& ctx) {
return ctx.begin();
}
template <typename FormatContext>
auto format(const point_double& p, FormatContext& ctx) {
return format_to(ctx.out(), "({:.1f}, {:.1f})", p.x, p.y);
}
};
} // namespace fmt
void foo() {
point_double p = {1, 2};
fmt::print("{}\n", p);
}
由于未使用用户定义的格式化程序,因此调用foo
会崩溃。相反,fmt::print
将使用默认的字符串格式化程序,并在操作员返回nullptr
时崩溃。
有没有办法解决这个问题?我正在使用fmt 5.3.0
答案 0 :(得分:0)
您不能同时进行到const char*
的隐式转换和formatter
的特殊化处理({fmt}现在会给您带来编译时错误),因为const char*
已经可以格式化了。如果您可以控制point_double
,则一个简单的解决方案是使转换运算符显式,这通常是个好主意。否则,您可以将point_double
包装为另一种类型,并为此提供formatter
专业化。