编写一个线程有两种方法,一种是实现Runnable接口,另一种方法是继承Thread类。
下面是实现Runnable接口的方法:
下面是继承Thread类的方法:
因为继承了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]
就是让线程停止一会,代码如下:
[color=red][size=xx-large]join方法[/size] [/color]
即合并,相当于方法调用。
代码如下:
相当于方法的调用。
运行原理如图:
[img]http://dl.iteye.com/upload/attachment/447444/1702ff2a-de01-3ad1-a641-a1e1149246ea.png[/img]
[color=red][size=xx-large]yield方法:[/size][/color]
让出CPU让别的线程执行一会
代码如下:
每到10的倍数的时候,那个线程都会让出CPU让另一个线程去运行。
下面是实现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让另一个线程去运行。