java如何创建多线程

30次阅读
没有评论

共计 786 个字符,预计需要花费 2 分钟才能阅读完成。

在 Java 中,可以通过以下方式创建多线程:

  1. 继承 Thread 类:创建一个新的类并继承 Thread 类,重写 run() 方法来定义线程执行的任务。然后创建该类的对象并调用 start() 方法启动线程。
public class MyThread extends Thread {public void run() {// 线程执行的任务 
    }
}

public class Main {public static void main(String[] args) {MyThread thread = new MyThread();
        thread.start();}
}
  1. 实现 Runnable 接口:创建一个实现了 Runnable 接口的类,实现 run() 方法来定义线程执行的任务。然后创建该类的对象,并将其作为参数传递给 Thread 类的构造方法,最后调用 start() 方法启动线程。
public 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();}
}
  1. 使用匿名内部类:可以直接在创建 Thread 对象时使用匿名内部类来实现线程执行的任务。
public class Main {public static void main(String[] args) {Thread thread = new Thread(() -> {// 线程执行的任务 
        });
        thread.start();}
}

无论采用哪种方式,创建多线程后,可以通过调用 start() 方法启动线程,并在 run() 方法中定义线程执行的任务。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2024-05-27发表,共计786字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)