Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
330 views
in Technique[技术] by (71.8m points)

c++11 - using range based for loop for iterating on a sub range

Is it possible to loop over sub range using range based for loop ?

std::vector <std::string> inputs={"1","abaaaa","abc","cda"};
 
for (auto &it : new_vector(inputs.begin()+1, inputs.end()))
{
    // …
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You could use Boost's iterator_range:

for (auto &it : boost::make_iterator_range(inputs.begin()+1, inputs.end()))
{
    cout << it << endl;
}

demo

Alternatively you could write your own wrapper.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...