-
HyperLink类,制作超链接样式的按钮的上加选择哟
HyperLink类,制作超链接样式的按钮的上加选择哟-HyperLink categories, the production of a hyperlink-style button to choose the add yo
- 2022-01-26 05:22:23下载
- 积分:1
-
留言簿:修改个人资料,站长可能删留言,解压:www.cctv.com
留言簿:修改个人资料,站长可能删留言,解压:www.cctv.com-book : revision of the personal information director may cut message, unpacked : www.cctv.com
- 2022-02-01 17:17:48下载
- 积分:1
-
数字时钟显示控件,可以设置各种前景背景。
数字时钟显示控件,可以设置各种前景色背景色-Digital clock display controls, you can set all kinds of Foreground Background Color
- 2023-01-01 12:10:03下载
- 积分:1
-
互联网技术教案
互联网技术教案-Internet technology curriculum
- 2022-07-14 00:25:23下载
- 积分:1
-
这是一个拼图程序设计,你点开然后运行就会出现你想不到的效果。...
这是一个拼图程序设计,你点开然后运行就会出现你想不到的效果。-This is a process design kit, you run after opening then you can not think there will be results.
- 2022-01-25 16:27:13下载
- 积分:1
-
一个可自动演示的图片控件
一个可自动演示的图片控件-a demonstration of the automatic controls Photo
- 2023-08-05 03:10:03下载
- 积分:1
-
Java born some advantage, his greatest charm is that it provides applications pr...
Java天生的一些优势,他最大的魅力就是它提供的应用程序编程接口(API应用程序编程接口)又是什么呢?API API是由操作环境提供给用来管理程序的系统设计者、程序员或组件进行调用或数据抽象的结构,换句话说,是操作系统或操作环境中应用程序与核心系统进行通信的接口,其形式为:ANSI C是printf的输出到使用文本函数调用的标准输出。因此,只要Java知道哪些类型可用,就可以轻松设计Java程序。
- 2023-04-04 17:45:02下载
- 积分:1
-
用VB作的Split控件
用VB作的Split控件-with VB Controls for the Split
- 2022-04-18 15:51:55下载
- 积分:1
-
可灵活自定义字体和外框线的大小和颜色和颜色的groupbox控件,内有相关的函数接口方便调用,是一个继承类。内有源码和示例程序。...
可灵活自定义字体和外框线的大小和颜色和颜色的groupbox控件,内有相关的函数接口方便调用,是一个继承类。内有源码和示例程序。-The flexibility to customize the fonts, and outline the size and color lines and color of the groupbox control-related functions within the interface to facilitate the call, is a derived class. There are source and sample programs.
- 2022-02-04 09:32:57下载
- 积分: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