共计 734 个字符,预计需要花费 2 分钟才能阅读完成。
Java 中调用多线程的方法有两种:
- 继承 Thread 类:创建一个继承自 Thread 类的子类,重写 run() 方法,在 run() 方法中定义线程执行的任务,然后创建该子类的对象,调用 start() 方法启动线程。
示例代码:
class MyThread extends Thread {public void run() {// 线程执行的任务
}
}
public class Main {public static void main(String[] args) {MyThread myThread = new MyThread();
myThread.start();}
}
- 实现 Runnable 接口:创建一个实现了 Runnable 接口的类,实现 run() 方法,在 run() 方法中定义线程执行的任务,然后创建该类的对象,将其作为参数传递给 Thread 类的构造方法,最后调用 Thread 对象的 start() 方法启动线程。
示例代码:
class MyRunnable implements Runnable {public void run() {// 线程执行的任务
}
}
public class Main {public static void main(String[] args) {MyRunnable myRunnable = new MyRunnable();
Thread thread = new Thread(myRunnable);
thread.start();}
}
这两种方法都可以实现多线程的调用,但推荐使用实现 Runnable 接口的方式,因为 Java 是单继承的,如果已经继承了其他类,就无法再继承 Thread 类,此时可以通过实现 Runnable 接口来创建线程。此外,实现 Runnable 接口还可以使代码更加清晰和可扩展。
丸趣 TV 网 – 提供最优质的资源集合!
正文完