java创建线程的方法有哪些 Java创建线程的方法有哪些

主机教程 建站分享 2年前 (2022-12-12) 180次浏览

文章摘要:java创建线程的方法有哪些 Java创建线程的方法有哪些

java中创建线程的方法有:1.使用Runnable接口创建;2.使用Thread继承类创建;3.使用Call […]

java中创建线程的方法有:1.使用Runnable接口创建;2.使用Thread继承类创建;3.使用Callable和Future创建;

java中创建线程的方法有以下几种

1.使用Runnable接口创建

public class RunnableThreadTest extends *** implements Runnable {

private int i;

public void run() {

for (i = 0; i < 100; i++) {

System.out.println(Thread.currentThread().getName() + " " + i);

}

}

public static void main(String[] args) {

for (int i = 0; i < 100; i++) {

System.out.println(Thread.currentThread().getName() + " " + i);

if (i == 20) {

RunnableThreadTest rtt = new RunnableThreadTest();

new Thread(rtt, "新线程1").start();

new Thread(rtt, "新线程2").start();

}

}

}

2.使用Thread继承类创建

public class ThreadTest extends Thread {

int i = 0;

public void run() {

for (; i < 100; i++) {

System.out.println(getName() + " " + i);

}

}

public static void main(String[] args) {

for (int i = 0; i < 100; i++) {

System.out.println(Thread.currentThread().getName() + " : " + i);

if (i == 50) {

new ThreadTest().start();

new ThreadTest().start();

}

}

}

}

3.使用Callable和Future创建

public interface Callable

{

  V call() throws Exception;

}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:java创建线程的方法有哪些 Java创建线程的方法有哪些
文章链接:http://www.7966.org/post/11806.html
转载请注明出处

喜欢 (0)