1.建立线程安全
在Java中建立线程有两种方法:使用Thread类和使用Runnable接口。在使用Runnable接口时须要创建一个Thread实例。所以,不管是经过Thread类仍是Runnable接口创建线程,都必须创建Thread类或它的子类的实例。Thread构造函数:多线程
public Thread( ); 异步
public Thread(Runnable target); ide
public Thread(String name); 函数
public Thread(Runnable target, String name); this
public Thread(ThreadGroup group, Runnable target); spa
public Thread(ThreadGroup group, String name); 操作系统
public Thread(ThreadGroup group, Runnable target, String name); 线程
public Thread(ThreadGroup group, Runnable target, String name, long stackSize);orm
方法一:继承Thread类覆盖run方法
复制代码代码以下:
public class ThreadDemo1 {
public static void main(String[] args){
Demo d = new Demo();
d.start();
for(int i=0;i<60;i++){
System.out.println(Thread.currentThread().getName()+i);
}
}
}
class Demo extends Thread{
public void run(){
for(int i=0;i<60;i++){
System.out.println(Thread.currentThread().getName()+i);
}
}
}
方法二:
复制代码代码以下:
public class ThreadDemo2 {
public static void main(String[] args){
Demo2 d =new Demo2();
Thread t = new Thread(d);
t.start();
for(int x=0;x<60;x++){
System.out.println(Thread.currentThread().getName()+x);
}
}
}
class Demo2 implements Runnable{
public void run(){
for(int x=0;x<60;x++){
System.out.println(Thread.currentThread().getName()+x);
}
}
}
2.线程的生命周期
与人有生老病死同样,线程也一样要经历开始(等待)、运行、挂起和中止四种不一样的状态。这四种状态均可以经过Thread类中的方法进行控制。下面给出了Thread类中和这四种状态相关的方法。
// 开始线程
publicvoid start( );
publicvoid run( );
// 挂起和唤醒线程
publicvoid resume( ); // 不建议使用
publicvoid suspend( ); // 不建议使用
publicstaticvoid sleep(long millis);
publicstaticvoid sleep(long millis, int nanos);
// 终止线程
publicvoid stop( ); // 不建议使用
publicvoid interrupt( );
// 获得线程状态
publicboolean isAlive( );
publicboolean isInterrupted( );
publicstaticboolean interrupted( );
// join方法
publicvoid join( ) throws InterruptedException;
线程在创建后并不立刻执行run方法中的代码,而是处于等待状态。线程处于等待状态时,能够经过Thread类的方法来设置线程不各类属性,如线程的优先级(setPriority)、线程名(setName)和线程的类型(setDaemon)等。
当调用start方法后,线程开始执行run方法中的代码。线程进入运行状态。能够经过Thread类的isAlive方法来判断线程是否处于运行状态。当线程处于运行状态时,isAlive返回true,当isAlive返回false时,可能线程处于等待状态,也可能处于中止状态。下面的代码演示了线程的建立、运行和中止三个状态之间的切换,并输出了相应的isAlive返回值。
一但线程开始执行run方法,就会一直到这个run方法执行完成这个线程才退出。但在线程执行的过程当中,能够经过两个方法使线程暂时中止执行。这两个方法是suspend和sleep。在使用suspend挂起线程后,能够经过resume方法唤醒线程。而使用sleep使线程休眠后,只能在设定的时间后使线程处于就绪状态(在线程休眠结束后,线程不必定会立刻执行,只是进入了就绪状态,等待着系统进行调度)。
在使用sleep方法时有两点须要注意:
1. sleep方法有两个重载形式,其中一个重载形式不只能够设毫秒,并且还能够设纳秒(1,000,000纳秒等于1毫秒)。但大多数操做系统平台上的Java虚拟机都没法精确到纳秒,所以,若是对sleep设置了纳秒,Java虚拟机将取最接近这个值的毫秒。
2. 在使用sleep方法时必须使用throws或try{...}catch{...}。由于run方法没法使用throws,因此只能使用try{...}catch{...}。当在线程休眠的过程当中,使用interrupt方法中断线程时sleep会抛出一个InterruptedException异常。sleep方法的定义以下:
publicstaticvoid sleep(long millis) throws InterruptedException
publicstaticvoid sleep(long millis, int nanos) throws InterruptedException
有三种方法可使终止线程。
1. 使用退出标志,使线程正常退出,也就是当run方法完成后线程终止。
2. 使用stop方法强行终止线程(这个方法不推荐使用,由于stop和suspend、resume同样,也可能发生不可预料的结果)。
3. 使用interrupt方法中断线程。
1. 使用退出标志终止线程
当run方法执行完后,线程就会退出。但有时run方法是永远不会结束的。如在服务端程序中使用线程进行监听客户端请求,或是其余的须要循环处理的任务。在这种状况下,通常是将这些任务放在一个循环中,如while循环。若是想让循环永远运行下去,可使用while(true){...}来处理。但要想使while循环在某一特定条件下退出,最直接的方法就是设一个boolean类型的标志,并经过设置这个标志为true或false来控制while循环是否退出。下面给出了一个利用退出标志终止线程的例子。
join方法的功能就是使异步执行的线程变成同步执行。也就是说,当调用线程实例的start方法后,这个方法会当即返回,若是在调用start方法后后须要使用一个由这个线程计算获得的值,就必须使用join方法。若是不使用join方法,就不能保证当执行到start方法后面的某条语句时,这个线程必定会执行完。而使用join方法后,直到这个线程退出,程序才会往下执行。下面的代码演示了join的用法。
3.多线程安全问题
问题缘由:当多条语句在操做同一个线程共享数据时,一个线程对多条语句只执行了一部分,还没执行完,另外一个线程参与进来执行,致使共享数据的错误。
解决办法:对多条操做共享数据的语句,只能让一个线程都执行完,在执行过程当中,其余线程不执行。
同步代码块:
复制代码代码以下:
public class ThreadDemo3 {
public static void main(String[] args){
Ticket t =new Ticket();
Thread t1 = new Thread(t,"窗口一");
Thread t2 = new Thread(t,"窗口二");
Thread t3 = new Thread(t,"窗口三");
Thread t4 = new Thread(t,"窗口四");
t1.start();
t2.start();
t3.start();
t4.start();
}
}
class Ticket implements Runnable{
private int ticket =400;
public void run(){
while(true){
synchronized (new Object()) {
try {
Thread.sleep(1);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(ticket<=0)
break;
System.out.println(Thread.currentThread().getName()+"---卖出"+ticket--);
}
}
}
}
同步函数
复制代码代码以下:
public class ThreadDemo3 {
public static void main(String[] args){
Ticket t =new Ticket();
Thread t1 = new Thread(t,"窗口一");
Thread t2 = new Thread(t,"窗口二");
Thread t3 = new Thread(t,"窗口三");
Thread t4 = new Thread(t,"窗口四");
t1.start();
t2.start();
t3.start();
t4.start();
}
}
class Ticket implements Runnable{
private int ticket = 4000;
public synchronized void saleTicket(){
if(ticket>0)
System.out.println(Thread.currentThread().getName()+"卖出了"+ticket--);
}
public void run(){
while(true){
saleTicket();
}
}
}
同步函数锁是this 静态同步函数锁是class
线程间的通讯
复制代码代码以下:
public class ThreadDemo3 {
public static void main(String[] args){
class Person{
public String name;
private String gender;
public void set(String name,String gender){
this.name =name;
this.gender =gender;
}
public void get(){
System.out.println(this.name+"...."+this.gender);
}
}
final Person p =new Person();
new Thread(new Runnable(){
public void run(){
int x=0;
while(true){
if(x==0){
p.set("张三", "男");
}else{
p.set("lili", "nv");
}
x=(x+1)%2;
}
}
}).start();
new Thread(new Runnable(){
public void run(){
while(true){
p.get();
}
}
}).start();
}
}
/*
张三....男
张三....男
lili....nv
lili....男
张三....nv
lili....男
*/
修改上面代码
复制代码代码以下:
public class ThreadDemo3 {
public static void main(String[] args){
class Person{
public String name;
private String gender;
public void set(String name,String gender){
this.name =name;
this.gender =gender;
}
public void get(){
System.out.println(this.name+"...."+this.gender);
}
}
final Person p =new Person();
new Thread(new Runnable(){
public void run(){
int x=0;
while(true){
synchronized (p) {
if(x==0){
p.set("张三", "男");
}else{
p.set("lili", "nv");
}
x=(x+1)%2;
}
}
}
}).start();
new Thread(new Runnable(){
public void run(){
while(true){
synchronized (p) {
p.get();
}
}
}
}).start();
}
}
/*
lili....nv
lili....nv
lili....nv
lili....nv
lili....nv
lili....nv
张三....男
张三....男
张三....男
张三....男
*/
等待唤醒机制
复制代码代码以下:
/*
*线程等待唤醒机制
*等待和唤醒必须是同一把锁
*/
public class ThreadDemo3 {
private static boolean flags =false;
public static void main(String[] args){
class Person{
public String name;
private String gender;
public void set(String name,String gender){
this.name =name;
this.gender =gender;
}
public void get(){
System.out.println(this.name+"...."+this.gender);
}
}
final Person p =new Person();
new Thread(new Runnable(){
public void run(){
int x=0;
while(true){
synchronized (p) {
if(flags)
try {
p.wait();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
};
if(x==0){
p.set("张三", "男");
}else{
p.set("lili", "nv");
}
x=(x+1)%2;
flags =true;
p.notifyAll();
}
}
}
}).start();
new Thread(new Runnable(){
public void run(){
while(true){
synchronized (p) {
if(!flags)
try {
p.wait();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
};
p.get();
flags =false;
p.notifyAll();
}
}
}
}).start();
}
}
生产消费机制一
复制代码代码以下:
public class ThreadDemo4 {
private static boolean flags =false;
public static void main(String[] args){
class Goods{
private String name;
private int num;
public synchronized void produce(String name){
if(flags)
try {
wait();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
this.name =name+"编号:"+num++;
System.out.println("生产了...."+this.name);
flags =true;
notifyAll();
}
public synchronized void consume(){
if(!flags)
try {
wait();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("消费了******"+name);
flags =false;
notifyAll();
}
}
final Goods g =new Goods();
new Thread(new Runnable(){
public void run(){
while(true){
g.produce("商品");
}
}
}).start();
new Thread(new Runnable(){
public void run(){
while(true){
g.consume();
}
}
}).start();
}
}
生产消费机制2
复制代码代码以下:
public class ThreadDemo4 {
private static boolean flags =false;
public static void main(String[] args){
class Goods{
private String name;
private int num;
public synchronized void produce(String name){
while(flags)
try {
wait();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
this.name =name+"编号:"+num++;
System.out.println(Thread.currentThread().getName()+"生产了...."+this.name);
flags =true;
notifyAll();
}
public synchronized void consume(){
while(!flags)
try {
wait();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+"消费了******"+name);
flags =false;
notifyAll();
}
}
final Goods g =new Goods();
new Thread(new Runnable(){
public void run(){
while(true){
g.produce("商品");
}
}
},"生产者一号").start();
new Thread(new Runnable(){
public void run(){
while(true){
g.produce("商品");
}
}
},"生产者二号").start();
new Thread(new Runnable(){
public void run(){
while(true){
g.consume();
}
}
},"消费者一号").start();
new Thread(new Runnable(){
public void run(){
while(true){
g.consume();
}
}
},"消费者二号").start();
}
}/*消费者二号消费了******商品编号:48049生产者一号生产了....商品编号:48050消费者一号消费了******商品编号:48050生产者一号生产了....商品编号:48051消费者二号消费了******商品编号:48051生产者二号生产了....商品编号:48052消费者二号消费了******商品编号:48052生产者一号生产了....商品编号:48053消费者一号消费了******商品编号:48053生产者一号生产了....商品编号:48054消费者二号消费了******商品编号:48054生产者二号生产了....商品编号:48055消费者二号消费了******商品编号:48055*/