4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

boost coroutine

Posted at

面白いですね、
macでとりあえず実行できたけど、ビルドがよくわからない。
オプションとか、iphone用とか・・・cinder用とか・・・


#include <iostream>
#include <boost/coroutine/coroutine.hpp>

typedef boost::coroutines::coroutine<void(void)> CoRoutine;
int main(int argc, const char * argv[])
{
    CoRoutine func([](CoRoutine::caller_type& yield)
                   {
                       yield();
                       for(int i = 0 ; i < 10 ; ++i)
                       {
                           std::cout << i << std::endl;
                           yield();
                       }
                   });

    func();
    func();
    func();
    func();
    return 0;
}

output:
0
1
2
3


4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?