java中怎么实现runnable接口

56次阅读
没有评论

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

在 Java 中,可以通过以下两种方式来实现 Runnable 接口:

  1. 创建一个类,实现 Runnable 接口,并重写 run() 方法。
public class MyRunnable implements Runnable {@Override
    public void run() {// 在这里定义线程执行的任务 
    }
}

然后,可以将该类的实例传递给 Thread 类的构造函数,创建一个新的线程,并调用 start() 方法启动线程。

MyRunnable myRunnable = new MyRunnable();
Thread thread = new Thread(myRunnable);
thread.start();
  1. 使用匿名类实现 Runnable 接口。
Runnable myRunnable = new Runnable() {@Override
    public void run() {// 在这里定义线程执行的任务 
    }
};

Thread thread = new Thread(myRunnable);
thread.start();

这种方式可以省略创建一个新的类,直接在创建 Thread 对象时实现 Runnable 接口的匿名类,并重写 run() 方法。

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

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