boost::tuple 中模板化参数的数量
我的代码使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
::boost::tuples::length::value
辅助函数。请参阅文档。
Use the
::boost::tuples::length<T>::value
helper function.See documentation.
请在此处查看文档。
给出元组类型 T 的长度.
Check the doccumentation here.
gives the length of the tuple type T.
根据 boost::tuple 文档正在寻找的是
length::value
According to boost::tuple documentation what you are looking for is
length<T>::value