c – 访问boost :: tuple的成员

前端之家收集整理的这篇文章主要介绍了c – 访问boost :: tuple的成员前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试实现像vector这样的向量<升压::元组< INT,INT,INT> >天;我想要访问元组的第一个元素来检查一个条件.
有人可以告诉我怎么做吗?我是新来的提升.
提前致谢.

解决方法

#include <boost/tuple/tuple.hpp>
#include <iostream>
#include <vector>

int main()
{
    std::vector< boost::tuple<int,int,int> > v;
    v.push_back(boost::make_tuple(1,2,3));
    std::cout << boost::get<0>(v[0]) << std::endl;
    std::cout << boost::get<1>(v[0]) << std::endl;
    std::cout << boost::get<2>(v[0]) << std::endl;
}
原文链接:https://www.f2er.com/c/117727.html

猜你在找的C&C++相关文章