本文介绍了线程完成事件。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用createthread()创建了一个线程,它返回句柄并继续运行主线程。我想知道线程完成事件,以便我可以更新我的另一个更新我的用户界面的功能。



我尝试过:



我尝试使用Createevent()和setevent(),但这种方法要求我调用wait()。我不想等。

I have created one thread using createthread() which returns me handle and keep running main thread. I would like to know that thread completion event so that i can update my another function which update my User interface.

What I have tried:

I tried using Createevent() and setevent() , but this approach asking me to call wait(). I dont want to wait.

推荐答案


这篇关于线程完成事件。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 13:51