线程允许程序通过同时执行多项操作来更有效地运行。
线程可用于在后台执行复杂的任务,而无需中断主程序。
创建线程有两种方法。
它可以通过扩展来创建Thread
类并覆盖它的run()
方法:
public class Main extends Thread { public void run() { System.out.println("This code is running in a thread");
}}
创建线程的另一种方法是实现Runnable
界面:
public class Main implements Runnable {
public void run() {
System.out.println("This code is running in a thread");
}
}
如果类延长Thread
类,可以通过创建该类的实例并调用其来运行线程start()
方法:
public class Main extends Thread {
public static void main(String[] args) {
Main thread = new Main();
thread.start();
System.out.println("This code is outside of the thread");
}
public void run() {
System.out.println("This code is running in a thread");
}
}
如果该类实现了Runnable
接口,可以通过将类的实例传递给Thread
对象的构造函数,然后调用线程的构造函数start()
方法:
public class Main implements Runnable {
public static void main(String[] args) {
Main obj = new Main();
Thread thread = new Thread(obj);
thread.start();
System.out.println("This code is outside of the thread");
}
public void run() {
System.out.println("This code is running in a thread");
}
}
"extending" 和 "implementing" 线程之间的差异
主要区别在于,当一个类扩展 Thread 类时,您不能扩展任何其他类,但通过实现 Runnable 接口,也可以从另一个类扩展,例如:MyClass extends OtherClass implements Runnable
。
由于线程与程序的其他部分同时运行,因此无法知道代码将按什么顺序运行。当线程和主程序读写相同的变量时,这些值是不可预测的。由此产生的问题称为并发问题。
代码示例,其中变量的值数量是不可预测的:
public class Main extends Thread { public static int amount = 0; public static void main(String[] args) { Main thread = new Main(); thread.start(); System.out.println(amount); amount++; System.out.println(amount);
}public void run() { amount++;
}}
为了避免并发问题,最好在线程之间共享尽可能少的属性。如果需要共享属性,一种可能的解决方案是使用isAlive()
线程的方法,在使用线程可以更改的任何属性之前检查线程是否已完成运行。
使用isAlive()
防止并发问题:
public class Main extends Thread { public static int amount = 0; public static void main(String[] args) { Main thread = new Main(); thread.start(); // Wait for the thread to finish while(thread.isAlive()) { System.out.println("Waiting...");
}// Update amount and print its value System.out.println("Main: " + amount); amount++; System.out.println("Main: " + amount);
}public void run() { amount++;
}}
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!