-
用HOOK DLL查看下的密码
用HOOK DLL查看下的密码-with HOOK View DLL under the password
- 2022-03-24 12:06:25下载
- 积分:1
-
support asp environment can directly upload documents the details of the visit h...
在支持asp环境下可以直接上传文件 详细情况,访问http://www.sobay.cn-support asp environment can directly upload documents the details of the visit http://www.sobay.cn
- 2022-02-12 08:35:45下载
- 积分: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
-
超级链接
超级链接- Super links
- 2023-07-29 03:00:03下载
- 积分: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
-
演示了如何得到一个文件的信息,如文件属性、文件大小、文件的创建时间...
演示了如何得到一个文件的信息,如文件属性、文件大小、文件的创建时间-demonstration of how a document information, such as file attributes, file size, creation time, etc.
- 2022-07-23 16:03:56下载
- 积分:1
-
关于给初学者介绍SDK编程
关于给初学者介绍SDK编程- About gives the beginner to introduce SDK programs
- 2022-12-18 22:50:03下载
- 积分:1
-
带bevel线的静态控件
带bevel线的静态控件-The static control with beve line
- 2023-08-18 11:15:03下载
- 积分:1
-
On the scroll bar has all the features
在滚动条上有所有的功能
- 2022-02-13 06:09:02下载
- 积分: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