Java(通过继承Thread类的方式创建两个线程,在Thread构造方法中指定线程的名字“线程一”、“线程二”,并将这两个线程的名字打印出来。)

public class Double {
	public static void main(String[] args){
		Mythread one=new Mythread();
		Mthread two=new Mthread();
		one.setName("线程一");
		two.setName("线程二");
		one.start();
		two.start();
	}
}
class Mythread extends Thread
{
	public void run(){
			System.out.println("线程一");
	}
}
class Mthread extends Thread
{
	public void run(){
			System.out.println("线程二");
	}
}

 

你可能感兴趣的:(Java)