我遇到了格式化用户定义类型的问题,最终得到了这个基于 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