Java經常使用工具——java多線程

1、線程的建立ide

方式一:繼承Thread類,重寫run()方法spa

package com.imooc.thread1; class MyThread extends Thread{ public MyThread(String name) { super(name); } public void run() { for(int i=1;i<=10;i++) { System.out.println(getName()+"正在運行~~"+i); } } } public class ThreadTest1 { public static void main(String[] args) { MyThread mt1=new MyThread("線程1"); MyThread mt2=new MyThread("線程2"); mt1.start(); mt2.start(); } }

二、經過實現Runnable接口建立線程線程

package com.imooc.thread3; class PrintRunnable implements Runnable{ @Override public void run() { // 重寫接口的run()方法
        int i=1; while(i<=10) { System.out.println(Thread.currentThread().getName()+"正在運行!"+(i++)); } } } public class Test { public static void main(String[] args) { // 經過實現Runnable接口建立線程 //1.實例化Runnable接口的實現類
        PrintRunnable pr=new PrintRunnable(); //2.建立線程對象
        Thread t1=new Thread(pr); //3.啓動線程
 t1.start(); PrintRunnable pr2=new PrintRunnable(); //2.建立線程對象
        Thread t2=new Thread(pr2); //3.啓動線程
 t2.start(); } }

三、多個線程共享資源code

package com.imooc.thread3; class PrintRunnable implements Runnable{ int i=1; @Override public void run() { // 重寫接口的run()方法
        
        while(i<=10) { System.out.println(Thread.currentThread().getName()+"正在運行!"+(i++)); } } } public class Test { public static void main(String[] args) { // 經過實現Runnable接口建立線程 //1.實例化Runnable接口的實現類
        PrintRunnable pr=new PrintRunnable(); //2.建立線程對象,參數爲同一個對象,多個線程共享對象資源
        Thread t1=new Thread(pr); Thread t2=new Thread(pr); //3.啓動線程
 t1.start(); t2.start(); } }
相關文章
相關標籤/搜索