C ++,具有多个变量的范围循环

时间:2016-07-01 12:57:41

标签: c++ for-loop vector iterator range

有以下类型

 template <typename T>
 using TL = std::vector<T>;

如何在两个变量上创建基于多个/的范围循环

 TL <double> l1, l2;     
 for ( auto a:l1, auto b:l2)

而不是使用

 TL::iterator = il1, il2;
 for (il1 = l1. begin(), il2=l2.begin();;)

感谢您的帮助......

0 个答案:

没有答案