Java Thread

1.线程进程概念

多线程:单个程序内部好像在同一时刻运行多种运算

多进程:同一时间内好像有多个程序运行

2.线程状态

2.1 创建状态
2.2 可运行状态
2.3 不可运行状态
2.4 死亡状态



2.1 创建状态(new thread)

Thread testThread = new Thread();

没有被启动,仅仅是空的线程对象,系统不为它分配资源

可调用方法:start() stop()

2.2 可运行状态(runnable)

TestThread.start();

该方法产生了运行这个线程所需的系统资源,安排其运行

并调用线程体run(),使程序处于可运行状态

注意:并不一定在运行状态,也许线程还没真正执行

2.3 不可运行状态(not runnable)及其返回

(1)调用sleep()>过去时间
(2)调用了suspend()>resume()
(3)调用wait()>该条件变量所在对象notify()/notifyAll()
(4)输入输出流中发生线程阻塞->特定的I/O指令

2.4 死亡状态(dead)

自然撤销:run()方法中正常退出
主动停止:stop()方法停止当前线程

3.线程体构造

3.1 继承构造
3.2 接口构造

3.1继承构造

class TestThread extends Thread{

public TestThread(String str){
super(str);
}
public void run(){
.......
}
}

class Caller(){
public static void main(String[] args){
new TestThread("May 1st").start();
}
}

3.2 接口构造


class TestThread implements Runable{
public void run(){
.......
}
}

class Caller(){
public static void main(String[] args){

TestThread test =new TestThread();
new Thread(test).start();

}
}

注意:实现Runnable仅仅意味着有一个run()方法,不具有天生的线程能力。

4. 其它

4.1 构造方法选择
当一个线程已继承了另一个类时,用Runnable()接口

4.2 实用方法
isAlive():线程已被启动并且未被终止,返回true.

当应用程序需要经常处理大量短周期线程时,采用线程池技术是一个很好的解决方案。以下是小的测试程序

package org.net9.thread;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;

public class MainApp{

public static void main(String[] args) {
MainApp test = new MainApp(1000);
test.start();
test.close();
}
private int size = 0;

    ExecutorService pool = null;

    public MainTask(int size) {
this.size = size;
}

    public void start() {
long start = System.currentTimeMillis();
try {
// create cache thread pool
pool = Executors.newCachedThreadPool();
for (int i = 0; i < size; i++) {
Thread.sleep(50);
// thread usage
// new Thread(new SubTask()).start();
// thread-pool usage
pool.execute(new SubTask());
}
} catch (InterruptedException ie) {
ie.printStackTrace();
}
long end = System.currentTimeMillis();
System.out.println("test cost " + (end - start) + " ms!");
}

    public void close() {
// disable new tasks from being submitted
pool.shutdown();
try {
// wait a while for existing tasks to terminate
if (!pool.awaitTermination(60, TimeUnit.SECONDS)) {
// cancel currently executing tasks
pool.shutdownNow();
// wait a while for tasks to respond to being cancelled
if (!pool.awaitTermination(60, TimeUnit.SECONDS)) {
// thread pool cannot terminate
System.err.println("thread pool cannot terminate");
}
}
} catch (InterruptedException ie) {
// re-cancel if current thread also interrupted
pool.shutdownNow();
// preserve interrupt status
Thread.currentThread().interrupt();
}
}
}

package org.net9.thread;

public class SubThread implements Runnable {

   public void run() {
try {
Thread.sleep(500);
} catch (InterruptedException ie) {
ie.printStackTrace();
}
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值