搜索资源列表
R_and_Wserial_port
- 能够对串口进行读写,监视的类。利用线程实现了非阻塞调用-Be able to read and write to the serial port to monitor the class. Achieve a non-blocking use of the thread calling
softhy107a
- 网站程序更新说明: 露珠网站是一个以文章类、下载类、图片类、动画类、视频类为主的综合网站。我们的目标:麻雀虽小(420kb),五脏俱全!致力于打造互联网上程序最小功能齐全的网站源码,只要你会打字就会做网站和管理网站。任何个人和组织不得用于商业用途,本网站专业为你订做网站。 1.前台更换模板为芳香柑菊. 2.修正文章分页标识符. 3.修正tudou播放器问题. 4.关于操作系统是ntfs的不能运行露珠cms的说明,请看官方相关文章. 5.还有一些记不清,请看我的网站的演示吧. -The web
POLL
- 本软件采用专业OCR字符识别引擎,自动识别验证码!自动清除COOKIE!投票速度一流!软件采用后台线程直接发送数据报到服务器,CPU占用极低,最小化时自动隐藏到系统托盘区。你可以把投票任务交给电脑,24小时挂机,不影响你的正常学习工作,仍然可以狂顶靓颖!-This software is a professional OCR character recognition engine, automatic identification code! Automatic removal COOKIE!
QueueDemo_20100202
- 使用VC2008写的一个很实用的队列类和完整的测试例子程序,通过两个线程来操作该队列,一个线程负责入队操作,另一个线程负责出队操作-Use VC2008 to write a very useful test queue class and complete examples of procedures to operate the two threads through the queue, one thread is responsible for operations into the t
sde33
- 线程类模块,很好的易模块,适合易编程者使用-Thread class module, a very good and easy module for programmers to use and easy
datastr
- VC++常用的数据结构类源码 这是我在VC++日常开发中收集的一些经常用到的类库,每一款都可以轻松重用,这些类库适用于vs2003及以上的开发环境,其中 Thread 和 Delegate 是从C#中得到的灵感,还有一些是在使用开源代码或其它语言时得到的启发和灵感。个人认为部分代码还算好用,所以拿来分享一下。部分类库附带有例子,欢迎参考。-Commonly used data structures in VC++ class source This is the daily developm
VB-huibian
- vb汇编类,可以在vb内嵌汇编并执行,可以实现线程注入。-vb assembler class can be compiled and executed in vb embedded, you can achieve thread injection.
FProducerResumerQueue
- 1.可以设置队列中的最大长度; 2.线程安全; 3.多线程想向队列中放入数据时,可设置等待队列有空位的超时时间,当有空位时,等待线程会被唤醒并将数据加入队列。函数原型为:FTLThreadWaitType Append(const ELEMENT& element, DWORD dwTimeOut). 4.多线程从队列中取出数据时,可设置等待队列有数据的超时时间, 当有数据时等待线程会被唤醒。函数原型为:FTLThreadWaitType Remove(ELEMEN
berberShop
- four class theirname are Barbershop,Barber,Customer,Cashier Barber,cashier,customer is thread threfore extended thread class i write main method inside Barbershop class and call methods from it.
TkThread
- 自己写的一个小线程类,加了线程队列,个人觉得比较好用-A small thread class to write their own, plus the thread queue, personal feel good
commons-email-1.3.3-bin.tar
- 与发Email有关, public class sendMessage extends Thread { @Override public void run(){ super.run() try{ HtmlEmail email = new HtmlEmail() email.setHostName( *.163.com ) email.setTLS(true) email.setSSL(true) email.setChars
MFC-USARTClass
- VC6.0 创建的一个MFC的串口类(创建线程进行数据接收),主要用于做窗口时需要用到串口问题的解决。-VC6.0 created a serial MFC class (create a thread for data reception), is mainly used to do when the window need to use a serial port on the solution of the problem.
test2
- 用户界面线程示例: 在这个例子中我们要学会如何创建一个可以单独执行的功能,且可以和应用程序同时运行的线程,而且该线程需要自己的用户界面,也就是说用户的操作和你程序的运算不会有干扰。例如在文档应用程序中的查询和替换功能。在这个例子中我们需要使用框架中的AfxBegin Thread()函数来创建用户界面线程。这将对线程具有完全控制权,我们将创建自己的CWinThread派生线程类。 -User interface thread example: &
test4
- 大家知道在VC++中我们可以用CreateThread创建一个线程,该函数返回这线程的Handle,以后我们就可以用这个Handle来管理这个线程的。于是我们可以做一个类名为ThreadManager,来管理这些Handle,并随时监控这些线程的状态。 总的思想就是这样,不过为了方便使用,我们最好把这个类封装成DLL的形式,这样以后我们在任何程序中都可以很方便的用该类来管理线程了(当然如果你有兴趣,也可以用COM模型来实现)。 -We all know that in VC++, we
Thread
- 在Java应用程序中用Thread的子类创建两个线程,这两个线程分别在命令行窗口输出20句“大象”和“轿车”;主线程在命令行窗口中输出15句“主人”。 -In the Java application, the two thread is created by using Thread s sub class. The two threads are respectively output the command line window, the elephant and car t
CSerialPort-problem-
- CSerialPort是一个很好的串口通讯类,但它没有关闭串口的方法,如果对这个类的实现原理不了解,自行编写串口关闭方法可能会带来如下问题: 1、用closehandle方法关闭串口:由于调用类方法StartMonitoring后会生成一个串口通信线程,这个线程中要不停地访问串口,这种方法会带来明显的错误。 2、先用StopMonitoring方法停止串口监听,然后用closehandle关闭串口:由于StopMonitoring只是将进程挂起,这样做将使程序结束时解构函
functibn-cmeate
- 基于MFC对话框类创建的线程,传递给线程函数2个参数-Based on the MFC dialog box class to create threads, two parameters passed to the thread function
Hutool_v3.2.0
- Hutool是一个Java基础工具类,对文件、流、加密解密、转码、正则、线程、XML等JDK方法进行封装,组成各种Util工具类,同时提供以下组件: 布隆过滤 缓存 克隆接口 类型转换 日期处理 数据库ORM(基于ActiveRecord思想) 基于DFA有限自动机的多个关键字查找 HTTP客户端 IO和文件 有用的一些数据结构 日志 反射代理类的简化(AOP切面实现) Setting(一种扩展Properties的配置文件) System(JVM和系统信息等) W
完成数据初始化、修改进度条组件进度变化的线程类
- 完成数据初始化,修改进度条组件进度变化的线程类(Thread class that completes data initialization, modifies progress bar component progress)
DuoXianChen
- 多线程的课堂笔记与课堂练习 刚刚入门的可以看看(Multi thread class notes and classroom exercises)