用JAVA语言通过实现Runnable接口方式创建并启动线程,线程中实现在控制台上打印“hello thread”的功能。 步骤如下: 1.创建一个类实现Runnable接口 2.重写run()方法,在方法内实现打印“hello thread”的功能 3.创建Thread类对象,将实现Runnable接口的类的对象做为参数,传递到Thread类的Thread(Runnable runable)构造方法中 4.通过Thread类对象调用start()方法开启线程
时间: 2024-02-06 19:10:25 浏览: 121
java Runnable接口创建线程
下面是示例代码:
```
public class HelloThread implements Runnable {
@Override
public void run() {
System.out.println("Hello thread");
}
public static void main(String[] args) {
HelloThread helloThread = new HelloThread();
Thread thread = new Thread(helloThread);
thread.start();
}
}
```
这个程序创建了一个实现了Runnable接口的类HelloThread,并重写了run()方法,在其中打印了"Hello thread"。在main()方法中,创建了一个Thread类的对象,并将HelloThread类的对象作为参数传递到Thread类的构造方法中。最后通过调用start()方法开启线程,执行run()方法中的代码。
阅读全文