65,209
社区成员
发帖
与我相关
我的任务
分享A:
strand.post( boost::bind( &PrintNum, 1 ) );
strand.post( boost::bind( &PrintNum, 2 ) );
strand.post( boost::bind( &PrintNum, 3 ) );
B:
io_service->post( strand.wrap( boost::bind( &PrintNum, 1) ) );
io_service->post( strand.wrap( boost::bind( &PrintNum, 2 ) ) );
io_service->post( strand.wrap( boost::bind( &PrintNum, 3 ) ) );