boost::tuple 中模板化参数的数量

发布于 2024-11-17 17:42:11 字数 236 浏览 3 评论 0原文

我的代码使用 boost::tuple

假设我想存储具有 3 个成员的结构的等效项,

  typedef boost::tuple< std::string, int, double > my_struct;

是否有任何方法可以调用元组,从而给出包含的成员数,在本例中为 3?

我的目标是监视何时增加模板参数的数量。

I am using boost::tuple for my code.

Suppose that I want to store an equivalent of a structure having 3 members

  typedef boost::tuple< std::string, int, double > my_struct;

Is there any way of method to call on the tuple that will give me the number of members contained so in this case 3?

My goal here is to monitor when I increase the number of template parameters.

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

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

发布评论

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

评论(3

长途伴 2024-11-24 17:42:11

使用 ::boost::tuples::length::value 辅助函数。

请参阅文档

Use the ::boost::tuples::length<T>::value helper function.

See documentation.

黯淡〆 2024-11-24 17:42:11

请在此处查看文档。

length<T>::value

给出元组类型 T 的长度.

Check the doccumentation here.

length<T>::value

gives the length of the tuple type T.

你列表最软的妹 2024-11-24 17:42:11

根据 boost::tuple 文档正在寻找的是 length::value

According to boost::tuple documentation what you are looking for is length<T>::value

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