-
playmci algorithm and the experimental procedure issues
c语言实现playmci的算法以及实验程序课题-playmci algorithm and the experimental procedure issues
- 2022-02-11 12:43:36下载
- 积分:1
-
本程序从CStatic派生出CHyperlink,用于实现超级链接的各种功能
本程序从CStatic派生出CHyperlink,用于实现超级链接的各种功能-This procedure CStatic derived from CHyperlink, hyperlinks to achieve the various functions
- 2022-02-13 08:59:26下载
- 积分:1
-
用VB作的Split控件
用VB作的Split控件-with VB Controls for the Split
- 2022-04-18 15:51:55下载
- 积分:1
-
模拟量节点模拟显示程序。比如汽车仪表盘,电压,油压量的显示...
模拟量节点模拟显示程序。比如汽车仪表盘,电压,油压量的显示
- 2022-12-18 16:50:03下载
- 积分:1
-
利用VC编程在界面上实现3D文字
利用VC编程在界面上实现3D文字-VC Programming Interface 3D characters
- 2022-04-07 17:05:23下载
- 积分:1
-
用JAVA写的MAILSERVER,非常好用!功能强大!
用JAVA写的MAILSERVER,非常好用!功能强大!-written with Java MAILSERVER, very handy! Powerful!
- 2023-04-05 08:20:03下载
- 积分:1
-
在PC Xwindows远程登陆Unix上支持中文
在PC Xwindows远程登陆Unix上支持中文
-Xwindows remote PC Unix landing on Chinese support
- 2023-08-16 01:50:02下载
- 积分:1
-
支持文字回绕,字体和颜色,透明,及背景图片拖拽的静态控件...
支持文字回绕,字体和颜色,透明,及背景图片拖拽的静态控件-support text, fonts and colors, transparent, and the background image stretching static control
- 2022-04-23 05:39:36下载
- 积分:1
-
详细的java示例代码,超级有用,格式正确已经调试了的
详细的java示例代码,超级有用,格式正确已经调试了的-detailed sample code, the super useful debugging format has the right of the
- 2022-06-03 12:09:41下载
- 积分:1
-
public class Server extends Thread { Client client int counter public Server(Cli...
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 new RuntimeException("counter >= 10") } public static void main(String[] args) { Client c = new Client() Server s = new Server(c) c.start() s.start() } } class Client extends Thread { Vector queue public Client() { this.queue = new Vector() } public void run() { while (true) { if (! (queue.size() == 0)) { processNextElement() } } } private void processNextElement() { Object next = queue.elementAt(0) queue.removeElementAt(0) System.out.println(next)-public class Server extends Thread { Client client int counter public Server(Client _client) { this.client = _client this.counter = 0 } public void run() { while (counter lt; 10) { this.client.queue.addElement(new Integer(counter)) counter++ } throw new RuntimeException("counter gt;= 10") } p
- 2022-02-21 05:44:37下载
- 积分:1