关于线程简单理解

线程是电脑CPU交替实现不同的方法,写一个例子;

public class Test{
    public static void main(String[] args){
   
     Runnable r=new Runnable();
     Thread t= new Thread(r);
        t.start();
         System.out.print("这是另一个线程");
  }

public class  inteplement Runnable {
    public run(){
             System.out.print("这是一个线程");
         }
    }
}

创建线程常见两种方法一是继承Thread类,二是实现Runnable接口。

posted @ 2017-05-26 16:12  鱼長  阅读(139)  评论(0编辑  收藏  举报