搜索资源列表
Pooler
- 关于线程池的实现! 包括C++,delphi,Java对线程的实现! 保证服务器能够良好的工作!- About line Cheng Chi realization! Including C, delphi, Java to line regulation realization! Guarantees the server to be able the good work!
Xload
- 在本系统中采用Client/Server和Browse/Application/Server相结合的体系结构设计。在局域网内的应用采用C/S方式,这样可提高系统运行性能-the system using Client / Server and Browse / Applicat ion / Server combination of architecture design. The LAN applications using C / S, it would enhance operating
自定义水晶报表设计器
- 水晶报表是一个报表设计开发的强大工具,功能强大,设计灵活,在水晶报表光盘中只提供了一个完全动态生成报表的例子,使用繁琐。现介绍其在VC++6.0中的简单使用方法。编译环境:VC++6.0 sp5 、Windows 2000 Server sp3 (en)。 一、导入水晶报表使用的动态联接库:根据实际修改文件路径。 #import \"C:\\Documents and Settings\\Administrator\\桌面\\cr\\craxdrt9.dll\" no_namespace-cr
解决生产者-消费者问题
- public class Server extends Thread { Client client int counter public Server(Client _client) { this.client = _client this.counter = 0 } public void run() { while (counter < 10) { this.client.queue.addElement(new Integer(counter)) counter++ } throw