开发者

for each in GCC and GCC version

开发者 https://www.devze.com 2023-01-12 07:23 出处:网络
how can I use for each loop in GCC? and how can i get开发者_高级运维 GCC version? (in code)Use a lambda, e.g.

how can I use for each loop in GCC?

and how can i get开发者_高级运维 GCC version? (in code)


Use a lambda, e.g.

// C++0x only.
std::for_each(theContainer.begin(), theContainer.end(), [](someType x) {
    // do stuff with x.
});

The range-based for loop is supported by GCC since 4.6.

// C++0x only
for (auto x : theContainer) {
   // do stuff with x.
}

The "for each" loop syntax is an MSVC extension. It is not available in other compilers.

// MSVC only
for each (auto x in theContainer) {
  // do stuff with x.
}

But you could just use Boost.Foreach. It is portable and available without C++0x too.

// Requires Boost
BOOST_FOREACH(someType x, theContainer) {
  // do stuff with x.
}

See How do I test the current version of GCC ? on how to get the GCC version.


there is also the traditionnal way, not using C++0X lambda. The <algorithm> header is designed to be used with objects that have a defined operator parenthesis. ( C++0x lambdas are only of subset of objects that have the operator () )

struct Functor
{
   void operator()(MyType& object)
   {
      // what you want to do on objects
   }
}

void Foo(std::vector<MyType>& vector)
{
  Functor functor;
  std::for_each(vector.begin(), vector.end(), functor);
}

see algorithm header reference for a list of all c++ standard functions that work with functors and lambdas.

0

精彩评论

暂无评论...
验证码 换一张
取 消