搜索资源列表
Vc++ initial
- 该程序创建了一个线程,并在线程中实现精度条推进。首先调用AfxBeginThread函数创建一个新进程,然后调用PostThreadMessage函数乡新建的线程发送WM_BEGINPROG消息,并将禁毒条的指针作为参数传递给新的线程,最后再OnBeginProg函数通过参数wParam生成的一个进度条指针实现进度条的逐步推进。-the program to create a thread, the thread and achieve
Threadqxc
- 分别利用函数AfxBeginThread 和函数 CreateThread进行多线程编程。并对线程就行了简单策控制。-respectively AfxBeginThread function and the use of function into CreateThread the multi-threaded programming. Also on the trip threaded a simple control strateg
MulThreadclass
- 感觉多线程确实麻烦,线程间要处理好同步与通讯,如果用CWinThread好一点,直接是一个线程对象,如果用AfxBeginThread,那必须定个全局函数,或者写个静态函数,一般是传个this指针进去,然后再用这个指针调用本类函数的成员函数,用起来比较麻烦,现在问题是能不能不用全局或者静态函数来实现呢,于是我实现了这个类,来所简化多线程的创建和关闭的操作。
MulThreadclass
- 如果用CWinThread好一点,直接是一个线程对象,如果用AfxBeginThread,实现了这个类,来所简化多线程的创建和关闭的操作。
Task20080301-MultiThread(pchlong-2008-03-23)
- 演示多线程编程常用函数的使用,如: _beginthread、_beginthreadex、CreateThread、AfxBeginThread
BeginthreadDemo
- 这是我写的Win32 console Application程序来测试_beginthread函数创建多线程程序的用法以及参数传递的程序。- This is Win32 console which I writes the Application procedure tests the _beginthread function foundation multithreading procedure the usage as wel
程序创建两个线程
- 程序创建两个线程,第一个线程没有消息队列,主线程尝试给第一个线程发送一个消息,我们可以看到PostThreadMessage()返回FALSE,程序创建的第二个线程有一个消息队列,主线程中的PostThreadMessage()返回TRUE,程序由Visual C++ 6.0开发,没有用到MFC-process creates two threads, one thread without Message Queue, the main
Vc++ initial
- 该程序创建了一个线程,并在线程中实现精度条推进。首先调用AfxBeginThread函数创建一个新进程,然后调用PostThreadMessage函数乡新建的线程发送WM_BEGINPROG消息,并将禁毒条的指针作为参数传递给新的线程,最后再OnBeginProg函数通过参数wParam生成的一个进度条指针实现进度条的逐步推进。-the program to create a thread, the thread and achieve
Threadqxc
- 分别利用函数AfxBeginThread 和函数 CreateThread进行多线程编程。并对线程就行了简单策控制。-respectively AfxBeginThread function and the use of function into CreateThread the multi-threaded programming. Also on the trip threaded a simple control strateg
MulThreadclass
- 感觉多线程确实麻烦,线程间要处理好同步与通讯,如果用CWinThread好一点,直接是一个线程对象,如果用AfxBeginThread,那必须定个全局函数,或者写个静态函数,一般是传个this指针进去,然后再用这个指针调用本类函数的成员函数,用起来比较麻烦,现在问题是能不能不用全局或者静态函数来实现呢,于是我实现了这个类,来所简化多线程的创建和关闭的操作。-Trouble feeling really multi-threaded, t
MulThreadclass
- 如果用CWinThread好一点,直接是一个线程对象,如果用AfxBeginThread,实现了这个类,来所简化多线程的创建和关闭的操作。-If CWinThread better direct object is a thread, if AfxBeginThread, realize this category, to simplify the creation of multi-threading on and off opera
Task20080301-MultiThread(pchlong-2008-03-23)
- 演示多线程编程常用函数的使用,如: _beginthread、_beginthreadex、CreateThread、AfxBeginThread-Demonstration of multi-threaded programming using the commonly used functions, such as: _beginthread, _beginthreadex, CreateThread, AfxBeginThre
CWinThread
- 这是一个关于CWinThread以及利用继承自CWinThread使用多线程的程序! 1,尽量使用DECLARE_DYNCREATE,这样能够动态创建。 2,继承自CWinThread,所以可以使用CreateThread()函数进行线程创建,在最开始我被书上的AfxBeginThread(RUNTIME_CLASS(CMyClass))误导了,还以为一定要按照这种方式创建线程呢。 3,查MSDN的同时,也要注意思考C++的
threadConsolewin32API
- win32中和mfc中线程的实现方式。主要使用了threadBegin和AfxBeginThread方法等-the way to implement thread in win32 and mfc
BitMapTest
- MFC全局函数AfxBeginThread-good
MultiThreadModelLessDialog
- 这是使用AfxBeginThread写的两个对话框通信的程序,分别是主框和一个非模态对话框,通信方式是SendMessage,代码有一定注释量,适合初学者-This is a program of the two dialog boxes using AfxBeginThread written communication are the main fr a me and a non-modal dialog, means of com
AfxBeginThread
- 采用AfxBeginThread创建工作线程。采用素数的判断来演示,涉及到多参数的传递,消息的响应和信息的实时显示等。-Using AfxBeginThread to create a working thread. The judgment of the prime number is used to demonstrate the multi parameters, the response of the message and t
AfxBeginThreadTest
- VC++ 多线程测试程序,VC6.0 工程,很好的学习例程-VC++ , AfxBeginThread