搜索资源列表
例7.01 继承Thread类创建线程
- Thread 类创建线程,这对开发线程较有用-Thread category created threads, thread on the development of more useful
例7.02 实现Runnable接口创建线程
- 实现Runnable接口创建线程,这教有用对初学者-achieve starring interface to create threads that teach useful for beginners
shiliti
- 这是java实例的书上例题,里面共10章,实现Runnable接口创建线程,发送线程与接收线程,同步的发送线程与接收线程。-java examples of this is the book of excellence, which has 10 chapters, Jacqueline achieve thread interface to create, send and receive threads threads, simultaneously sending and receivin
实现Runnable接口创建线程
- 实现Runnable接口创建线程-achieve starring interface to create threads
program5
- Java多线程机制的源码包括线程控制方法、多线程实现方法 、如何用接口来创建线程、输入输出流类、创建目录和删除文件
Example10
- 创建线程,并且模拟演示了电影票售票员的售票过程,找零过程,以及没有零钱时的等待过程。
threadpool
- 线程池的开发,创建一个池来提高资源利用率,提高速率-the development of thread pool
Thread
- 线程 java里面的两个创建线程的方法 一个是Thread ,另一个是用Runnable-Java threads creating threads inside of the two methods
thread
- 实现Java中创建线程以及线程的控制线程的同步与锁-Java threads created to achieve control of threads and thread synchronization and locking
java
- 1)理解线程的概念; (2)了解线程的状态和生命周期; (3)学习继承Thread 类来创建线程; (4)使用Runnable 接口。 (5)学习Runnable 接口在Applet 程序中的使用; (6)掌握Runnable 接口实现多线程的优点; (7)加深对Applet 中的几个常用方法的理解。 (8)理解线程同步的含义; (9)掌握synchronized 同步方法与synchronized 同步语句的用法; (10)学会使用Thread Group
Threads
- Java简简单单创建线程的小例子,生成有Class文件.-java threads
vbvb
- java线程池的实现,及简单测试,创建线程池并且定义线程调度规则-failed to translate
ThreadTest
- 线程基础的作业,主要考查学生是否能够使用 Thread 方式创建线程, //并且使用 sleep() 方法。-Thread-based operations, primarily to examine whether students can be created using the Thread thread,// and use the sleep () method.
socket_communication
- TCP套接字编程实现: 开发一个多线程服务器,它能并行服务于多个请求。 提示: 用Java或c/c++语言开发; 通过调用操作系统API接口创建线程; 假定3个客户端,客户端i发送“Hi,God”,服务器回答“What can I do for you, my son i”,客户端收到后显示服务器回答。 分别用TCP和UDP两个协议来测试,端口号自定义 -TCP socket programming: Develop a multi-threaded server,
JingCheng-Communications
- 1、 点“创建线程” 按钮,创建两个线程,一个线程不断对一个变量加1,结果显示在第一个文本框中。另一个线程不断对另一个变量减1,结果显示在第二个文本框中。这两个线程之间没有交互,仅用于演示线程的创建。 2、 演示线程互斥,点“线程互斥” 按钮,创建两个线程,一个线程不断循环,每次循环对共享变量x做100次加1操作(这100次加1操作作为一个临界区CSa),另一个线程不断循环,每次循环对共享变量x做100次减1操作(这100次减1操作作为一个临界区CSb),结果显示在第三个文本框中。可以看到结
Thread-Communications
- 1、 点“创建线程” 按钮,创建两个线程,一个线程不断对一个变量加1,结果显示在第一个文本框中。另一个线程不断对另一个变量减1,结果显示在第二个文本框中。这两个线程之间没有交互,仅用于演示线程的创建。 2、 演示线程互斥,点“线程互斥” 按钮,创建两个线程,一个线程不断循环,每次循环对共享变量x做100次加1操作(这100次加1操作作为一个临界区CSa),另一个线程不断循环,每次循环对共享变量x做100次减1操作(这100次减1操作作为一个临界区CSb),结果显示在第三个文本框中。可以看到结
javaThreadStudy
- java线程学习,举了几个基本的线程例子,如:Ruannable、创建线程、线程实现走马灯等-java threads study, cited several examples of basic threads, such as: Ruannable, create a thread, the thread to achieve a revolving door, etc.
ThreadCreate
- 例子中包含了两种创建线程的方法:一种是创建用户自己的线程子类,另一种是在用户自己的类中实现Runable接口。线程优先级以及同步。 -Two examples are included to create threads: one is to create your own thread subclass, the other is a user interface to achieve Runable own class. Thread priority and synchronizati
thread
- 创建大小为1的固定线程池,同时执行任务(task)的只有一个,其它的(任务)task都放在LinkedBlockingQueue中排队等待执行。(Create a fixed thread pool of size 1, while only one task (task) is executed, and the other tasks (task) are queued in LinkedBlockingQueue for execution.)
JAVA线程池实验报告.docx
- 用JAVA实现一个线程池,线程池在初始状态下没有任何工作线程。当工作队列中有未执行的任务时,分一下两种情况处理: . 如果线程池中工作线程数目为MAX_SIZE,那就什么也不做; . 如果线程池中工作线程数目小于MAX_SIZE,那么创建一个工作线程,使它执行新任务。 对于线程池中空闲的工作线程,如果其闲置时间超过TIMEOUT秒,就销毁该线程。(A thread pool is implemented with JAVA, and the thread pool has no worki