poco普通线程
Posted yuguangyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poco普通线程相关的知识,希望对你有一定的参考价值。
#include "Poco/Thread.h" #include "Poco/RunnableAdapter.h" #include <iostream> class Greeter { public: void greet() { std::cout << "Hello, world!" << std::endl; } }; int main(int argc, char** argv) { Greeter greeter; Poco::RunnableAdapter<Greeter> runnable(greeter, &Greeter::greet); Poco::Thread thread; thread.start(runnable); thread.join();//等待该线程技术 return 0; }
以上是关于poco普通线程的主要内容,如果未能解决你的问题,请参考以下文章
Poco vs Boost(Poco也有不少优点,特别是网络功能更强)