错误:boost.fusion::for_each() 和从 boost.tuple 派生的结构

发布于 2024-09-26 02:39:06 字数 400 浏览 5 评论 0原文

编译此代码时:

struct any_type: boost::tuple<std::string, std::string, std::string> {
   ...
};

struct functor {
   void operator()(const std::string& v) {
      std::cout << v << std::endl;
   }
};

int main() {
   any_type type;
   boost::fusion::for_each(type, functor());
}

出现错误:“struct any_type”中没有名为“category”的类型 为什么? 我希望它继承自boost.tuple。

on compilation this code:

struct any_type: boost::tuple<std::string, std::string, std::string> {
   ...
};

struct functor {
   void operator()(const std::string& v) {
      std::cout << v << std::endl;
   }
};

int main() {
   any_type type;
   boost::fusion::for_each(type, functor());
}

get error: no type named 'category' in 'struct any_type'
why?
I want it to inherit from boost.tuple.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆夏时光 2024-10-03 02:39:06

继承自 boost::fusion::tuple 而不是 boost::tuple
注意:考虑将 void operator()(const std::string& v) 设置为 const

Inherit from boost::fusion::tuple instead of boost::tuple.
Note: Consider making void operator()(const std::string& v) const

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文