在Java实现多线程的程序中,虽然Thread类实现了Runnable接口,但是操作线程的主要方法并不在Runnable接口中,而在Thread类中。
模版
class MyThread implements Runnable{
public void run(){//覆写run方法
for(int i=0;i<3;i++)
{
System.out.println("SSS");
}
]
}
public class TestThread{
public static void main(String[] args){
MyThread m=new MyThread();
new Thread(m).start();//启动线程
}
}
Java程序每次运行至少启动几个线程
Answer:至少两个。1、Java的main线程。2、Java垃圾收集线程
时间: 2024-10-15 01:29:40