首页 > 代码库 > C++编程 - tuple、any容器
C++编程 - tuple、any容器
C++编程 - tuple、any容器
flyfish 2014-10-29
tuple是固定大小的容器,每个元素类型可以不同
作用1 替换struct
struct t1 { int nID; double dVal; };
替换为
typedef std::tuple<int,double> t1;
作用2 任意个数的函数返回值
写法1
std::tuple<int,double> TupleFunction1() { std::tuple<int,double> tupRet(0,0); tupRet=std::tuple<int,double>(1,2.1); return tupRet; }
写法2
std::tuple<int,double> TupleFunction2() { return std::make_tuple(1,2.1); }
调用
auto ret=TupleFunction1(); std::cout<<std::get<0>(ret)<<" "<<std::get<1>(ret)<< std::endl;
二 any
any容器采用boost库中的any
boost::any 只存储一个任意类型的元素
boost::any a=1; boost::any b=2.1;
借助any建造一种可以存储任意类型且大小动态变化的容器
std::vector<boost::any> v; v.push_back(1); v.push_back(2.1);
输出函数
void OutputAny(boost::any a) { if (!a.empty()) { if(a.type() == typeid(int)) { std::cout<< boost::any_cast<int>(a)<<std::endl; } if(a.type() == typeid(double)) { std::cout<< boost::any_cast<double>(a)<<std::endl; } } }
函数调用
for each(auto e in v) { OutputAny(e); }
以上程序在Visual C++2010下编译通过
C++编程 - tuple、any容器
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。