线程

 1.MFC将线程分为两类:用户界面(User interface)线程和工作者线程(Worker thread)。这两者之间的区别是

用户界面线程有消息循环,而工作者线程没有。

2.有两种方法用来在MFC应用程序中创建一个线程。可以构造一个CWinThread对象,并调用该对象的

CreateThread()函数来创建线程,也可以使用AfxBeginThread()构造一个CWinThread对象并同时创建一个线程。

3.工作者线程的创建形式:CWinThread * pThread = AfxBeginThread(ThreadFunc,&ThreadInfo,THREAD_PRIORITY_NOMAL,0,CREATE_SUSPENDED);

4.创建一个用户界面线程与创建一个工作者线程的过程完全不同。一个工作者线程由它的线程函数定义,但是一个

用户界面线程的行为由一个动态可以创建的类来控制,该类是从CWinThread派生的。

5.一个运行的线程可以用CWinThread::SuspendThread()成员函数来挂起,并可以用

CWinThread::ResumeThread()成员函数使它重新执行。一个线程可以在它自身上调用SuspendThread(),或者让

另一个线程来调用它的SuspendThread()。然而,一个被挂起的线程不能调用ResumeThread()来唤醒自己,必

须有别的线程为它调用ResumeThread()。

6.一个线程一旦开始,它就可以以两种方式来终止。当一个工作者线程的线程函数执行一个返回语句或者调用

AfxEndThread()成员函数时,这个工作者线程就终止。对于用户界面线程,当一个WM_QUIT消息发送到消息对列

中,或者该线程中的一个函数调用AfxEndThread()成员函数时,该线程就被终止。

7.worker Threads----These type of threads are used to complete background tasks when

there is not a need for any user input.

8. User Interface Threads------These types of threads are able to handle user input and

they implement a message map to respond to events and messages generated by user

interaction with the application. To create a user interface thread, you must derive your

own class from CWinThread class and pass run-timeinformation about the class to the

AfxBeginThread(...) function.

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值