java线程(一)

编写一个线程有两种方法,一种是实现Runnable接口,另一种方法是继承Thread类。
下面是实现Runnable接口的方法:
public class TestThread {
public static void main(String[] args) {
Runner r1 = new Runner();
Thread t = new Thread(r1);
t.start();

for(int i=0; i<100; i++) {
System.out.println("main" + i);
}
}


}

class Runner implements Runnable {

@Override
public void run() {
for(int i=0; i<100; i++) {
System.out.println(i);
}
}

}

下面是继承Thread类的方法:

public class TestThread {
public static void main(String[] args) {
Runner r1 = new Runner();
r1.start();

for(int i=0; i<100; i++) {
System.out.println("main" + i);
}
}


}

class Runner extends Thread {

@Override
public void run() {
for(int i=0; i<100; i++) {
System.out.println(i);
}
}

}

因为继承了Thread,所以main方法中直接start就可以了。
线程的状态:

[img]http://dl.iteye.com/upload/attachment/447364/e20bb6ba-dbac-3654-9f7f-aa4087a81c93.png[/img]

[color=red][size=xx-large]sleep的使用方法:[/size][/color]
就是让线程停止一会,代码如下:

public class TestThread {
public static void main(String[] args) {
Runner r1 = new Runner();
r1.start();
try {
Thread.sleep(10000);
} catch(InterruptedException e) {
}
r1.interrupt(); //这个方法太粗暴了,不太好。用下面的flag来停止比较好.
}
}

class Runner extends Thread {
boolean flag = true;
@Override
public void run() {
while(flag) {
System.out.println("=====");
try {
sleep(1000);
} catch(InterruptedException e) {
return ;
}
}
}

}


[color=red][size=xx-large]join方法[/size] [/color]
即合并,相当于方法调用。
代码如下:


public class TestThread {
public static void main(String[] args) {
Runner r1 = new Runner("runner1");
r1.start();
try {
r1.join();
} catch(InterruptedException e) {
}
for(int i=1; i<100; i++) {
System.out.println("-------");
}
}


}

class Runner extends Thread {
Runner(String name) {
super(name);
}

@Override
public void run() {
for(int i=0; i<100; i++) {
System.out.println("=====");
try {
sleep(1000);
} catch(InterruptedException e) {
return ;
}
}
}

}

相当于方法的调用。
运行原理如图:
[img]http://dl.iteye.com/upload/attachment/447444/1702ff2a-de01-3ad1-a641-a1e1149246ea.png[/img]
[color=red][size=xx-large]yield方法:[/size][/color]
让出CPU让别的线程执行一会
代码如下:

public class TestThread {
public static void main(String[] args) {
Runner r1 = new Runner("runner1");
Runner r2 = new Runner("runner1");
r1.start();
r2.start();
}


}

class Runner extends Thread {
Runner(String name) {
super(name);
}

@Override
public void run() {
for(int i=0; i<100; i++) {
System.out.println(getName() + i);
if(i%10 == 0) {
yield();
}
}
}

}

每到10的倍数的时候,那个线程都会让出CPU让另一个线程去运行。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值