-
u盘,mp3下的文件系统,完全兼容fat16,fat32,加上自己的硬盘驱动接口后应该可以使用...
u盘,mp3下的文件系统,完全兼容fat16,fat32,加上自己的硬盘驱动接口后应该可以使用-u disk, mp3 under the file system, fully compatible with fat16, fat32, coupled with their own hard disk drive interface should be able to use
- 2022-01-26 00:31:00下载
- 积分:1
-
背景和字体属性可改变的静态控件
背景和字体属性可改变的静态控件-The static control which can change its own background and font
- 2023-08-28 12:30: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
-
A realization of a translucent, reflection, luminescence, gradient transparency...
一个实现了半透明、倒影、发光、渐变透明度的图像控件。-A realization of a translucent, reflection, luminescence, gradient transparency image control.
- 2022-05-06 21:20:10下载
- 积分:1
-
数据上传源码用于ACCESS数据库请大家参考
数据上传源码用于ACCESS数据库请大家参考-From the data source for the ACCESS database please refer to
- 2023-05-19 05:05:03下载
- 积分:1
-
On the scroll bar has all the features
在滚动条上有所有的功能
- 2022-02-13 06:09:02下载
- 积分:1
-
这个功能不是很难,在这里只是为了给大家提供一些方便
这个功能不是很难,在这里只是为了给大家提供一些方便-this function is not difficult here just to give you all some convenience
- 2022-05-20 12:34:56下载
- 积分:1
-
硬盘出厂读取软件,可以读出你硬盘的出厂数据,有需要的朋友赶快下载吧...
硬盘出厂读取软件,可以读出你硬盘的出厂数据,有需要的朋友赶快下载吧-drives manufactured reader software that can read your hard drive factory data, the need to download it quickly friends
- 2022-02-13 09:14:27下载
- 积分:1
-
时间控件,可以动态显示时间
时间控件,可以动态显示时间-time control, dynamic display time
- 2022-01-31 12:32:49下载
- 积分: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