package cn.thread;
/**
* 创建线程之----------继承thread类
* 1:创建线程类
* 2:使用匿名函数创建线程
* @author Administrator
*
*/
public class TestThread {
/**
* 1:创建线程类
* @param args
*/
public static void main(String[] args) {
/*
* //创建线程对象 Mythread t1 = new Mythread(); //启动线程 t1.start();
*/
/**
* 2:使用匿名函数创建线程
*
*/
Thread thread=new Thread() {
public void run() {
for(int i=0;i<5;i++) {
System.out.println(Thread.currentThread().getName());
}
}
};
thread.start();
}
}
/**
* 1:创建线程类
* @param args
*/
/*
* class Mythread extends Thread{ //继承Thread类,覆盖run方法 public void run() {
* for(int i=0;i<5;i++) { //线程执行的当前任务
* System.out.println("当前线程是:"+Thread.currentThread().getName());
* System.out.println("执行线程任务"+i); } } }
*/