Boost.Asioのドキュメントでdifferentsチュートリアルを試していましたが、boostコンポーネントをC++ 11で置き換えようとしました。しかし、Timer.5 - Synchronising handlers in multithreaded programsのstd :: bindを使ってエラーが発生しました。私はstd::bind
によってstd::thread
とboost::bind
でboost::thread
を交換しようとしたこのBoost.Asioチュートリアルでstd :: bindとboost :: bindを同じ意味で使うことができない
#include <iostream>
#include <boost/asio.hpp>
#include <boost/thread/thread.hpp>
#include <boost/bind.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
class printer { /* Not relevent here */ };
int main()
{
boost::asio::io_service io;
printer p(io);
boost::thread t(boost::bind(&boost::asio::io_service::run, &io));
io.run();
t.join();
return 0;
}
:ここで提案されているコードがあります。私はどんなboost::asio::placeholders
を使用していない考慮に入れて、
g++ -std=c++0x main.cpp -lboost_system -lboost_date_time -lpthread
main.cpp: In function ‘int main()’:
main.cpp:52:60: erreur: no matching function for call to ‘bind(<unresolved overloaded function type>, boost::asio::io_service*)’
main.cpp:52:60: note: candidates are:
/usr/include/c++/4.6/functional:1444:5: note: template<class _Functor, class ... _ArgTypes> typename std::_Bind_helper::type std::bind(_Functor&&, _ArgTypes&& ...)
/usr/include/c++/4.6/functional:1471:5: note: template<class _Result, class _Functor, class ... _ArgTypes> typename std::_Bindres_helper::type std::bind(_Functor&&, _ArgTypes&& ...)
このエラーがから来ている:
#include <functional>
#include <iostream>
#include <thread>
#include <boost/asio.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
class printer { /* Not relevent here */ };
int main() {
boost::asio::io_service io;
printer p(io);
std::thread t(std::bind(&boost::asio::io_service::run, &io));
io.run();
t.join();
}
GCC 4.7でコンパイルし、私はこのコンパイル時のエラーを得た:ここに私のコードです(このスタックオーバーフローの質問Should std::bind be compatible with boost::asio?で説明)?
可能重複:http://stackoverflow.com/questions/8924149/should-stdbind-be-compatible-with-boostasioを参照してください。 – mark
既にC++ 11を使用しているので、lambdaは代替'std :: thread t([&io](){io.run();});'これはオーバーロードの解決を完全に避けます。 – mavam