gpt4 book ai didi

c++ - 自定义类型与 boost::format 的 % 运算符一起使用的要求是什么?

转载 作者:可可西里 更新时间:2023-11-01 17:57:05 26 4
gpt4 key购买 nike

我想知道必须在类中实现哪些函数和/或运算符才能使用 boost::format % 运算符。

例如:

class A
{
int n;
// <-- What additional operator/s and/or function/s must be provided?
}

A a;
boost::format f("%1%");
f % a;

我一直在学习Pretty-print C++ STL containers ,这在某些方面与我的问题有关,但这让我花了几天时间进行相关审查和学习,涉及涉及 auto 和各种其他语言功能的问题。我还没有完成所有这些调查。

有人可以回答这个具体问题吗?

最佳答案

你只需要定义一个合适的输出操作符(operator<<):

#include <boost/format.hpp>
#include <iostream>

struct A
{
int n;

A() : n() {}

friend std::ostream &operator<<(std::ostream &oss, const A &a) {
oss << "[A]: " << a.n;
return oss;
}
};

int main() {
A a;
boost::format f("%1%");
std::cout << f % a << std::endl;
}

关于c++ - 自定义类型与 boost::format 的 % 运算符一起使用的要求是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13326542/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com