搜索资源列表
ThreadTest.rar
- 一个实例,介绍如何在VC中调用多线程,本例中也同时实现了常用的排序算法。,An example on how to call the VC multi-threaded, this case also the realization of the sorting algorithm used.
Multithread
- 操作系统实验 多线程实现矩阵乘法 win32、pthread、java三种线程库均有 适合用来学习多线程操作的入门例程-java, win32, pthread three kinds of thread libraries are suitable for multi-threaded operation started learning routines
MultiThread5
- VC++实现多线程编程一例,实现了线程间的同步。-VC++ multi-thread programming an example to realize the synchronization between threads.
ThreadCreat
- 本例介绍了多线程之间的同步和运行,实现两个小球交替运动-This example describes the synchronization between multiple threads and run to achieve two ball alternating movement
CMutex
- vc6下实现的多线程同步例子。本例很好的说明多线程同步方法的使用。同步方法是互斥体,使用的是mfc中互斥对象,简单易用很适合初学线程控制学习。
Monitoring
- 用两个目录的监视为例说明多线程的应用,如果用列表保存线程及其所监视的目录,就可以实现任意多个目录的监视。 在创建线程前要指明其所监视的目录和反映变化的显示列表。-Monitoring with the directory as an example of two multi-threaded applications, if the list kept by the monitor thread and the directory, you can achieve any number of
CommTest
- 1.使用多线程的串口类。有读线程和写线程,发送、接收缓冲区(默认2048字节),满足高性能的收发要求。 2.提供事件通知回调函数接口,可以实现接收的消息接口 3.可以监控Modem事件,提供流控接口。 4.调用接口简单。使用例程参考CommTest.dsw-1. Using multi-thread serial port class. Have read the thread and write threads, send, receive buffer (def
Thread_CarManagementSystem
- 这是一个用Java实现多线程的例子,可以是在两台相互可以ping通的机子之间互相传送消息;另外,还包含一个配置聊天室和以车辆管理为例的管理系统的例子。-This is a Java multi-threading example, can be in two of the machine can ping each other between the transmitted messages to each other In addition, the configuration includ
dotnet-duoxianchnegkaifa
- .net多线程实现的方法及例程包含开发档-. Net multi-threading methods and routines include development files
Threagkktrdest
- 一个介绍如何在Visual C中调用多线程代码,本例中也同时实现了常用的排序算法。完整源代码,已通过测试。-How a call in Visual C multi-threaded code, in this case also commonly used to achieve a sort algorithm. Full source code, has been tested.
AThreadTeestn
- 一个实例,介绍如何在Visual C中调用多线程,本例例中也同时实现了常用的排序算法。,已通过测试。 -An instance, describes how to invoke the multi-threading in Visual C, this example case, while achieving a common sorting algorithms. , Has been tested.
ranSelect
- C#四种方式实现对用户操作响应灵敏及可动态更新的窗体控件及其对比 随机抽奖应用为例 开发环境vs2010 timer,backGroundWorker,多线程,委托四种方式的对比: 1.4种方式都可以实现要求 可谓条条大路通罗马 2.多线程和委托需要强行禁用CheckForIllegalCrossThreadCalls,有可能存在运行安全问题,但目前还没遇到 3.timer的源代码最少最简单 其次是多线程 4.委托本质上还是要用到多线程 区别在于委托是
MemoryPool
- 内存池的实现,具有详细的代码样例,包含单线程及多线程的实现。固定内存块及不固定内存块。-Memory pool implementation, with detailed code examples, including single-threaded and multi-threaded implementation. Fixed blocks of memory and non-fixed blocks of memory.
MultiThread1
- Win32 SDK函数支持进行多线程的程序设计,并提供了操作系统原理中的各种同步、互斥和临界区等操作。Visual C++ 6.0中,使用MFC类库也实现了多线程的程序设计,使得多线程编程更加方便。该例程为Windows API 编写的一个多线程程序实例。-Win32 SDK function supports multi-threaded programming, and provides a variety of operating system principles in synchron
singleton
- 多线程环境下单例设计模式的C++和java实现-Multi-threaded environment C++ Singleton design pattern and java realization
VBCreateThread
- vb实现多线程的例程,很详细,并且直观实用-vb multi-threaded routines, intuitive and practical
221p
- 360程序进度下载源码程序,例程结合易语言扩展界面支持库和多线程支持库,调用API函数实现360最新版本的下载。可以时时来定位当前的位置来显示(360, download the source code program. The routine combines the easy language extension interface support library and multi thread support library. The API function is called to
impuement
- 易语言新浪微博PC客户端源码例程程序结合易语言多个支持库和模块,实现新浪微博在本地机器的应用,可以查看,发布微博,()
多线程实现的例程
- PB多线程的源码例子,用于多线程并行,可不用等待timer时间的顺序执行。(A source code example of PB multithreading)
双向链表的多线程安全读写
- C++实现了双向链表的操作 使用线程同步技术实现了线程的安全读写 提供了4种链表操作(插入、查询、替换、删除)的测试用例