我正在尝试实现像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; }