Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 ACE 编写一个多线程进程(在 linux 上)。在c++中实现线程时使用ACE_Task和ACE_thread_t有什么区别
ACE_thread_t 实际上是一个低级句柄。要使用 ACE 实现多线程应用程序,请实现从 ACE_Task 或 ACE_Task_Base 派生的类。有关如何执行此操作的大量示例,请参阅 ACE_wrappers/examples/Threads 或 ACE_wrappers/tests。