[Java] 创建线程的三种方法

1. 

// 继承Thread类 

class thread2 extends Thread{
    public void run(){
        for(int i=1;i<=100;i++)
        {
            System.out.println("Hello world!"+getName()+" "+i);
        }
    }
}


class thread1 extends Thread{
    public void run(){
        for(int i=1;i<=100;i++)
        {
            System.out.println("Hello world!"+getName()+" "+i);
        }
    }
}

public class Main {

    public static void main(String args[]) {
       thread1 t1=new thread1();
        thread2 t2=new thread2();
        t1.setName("线程1");
        t2.setName("线程2");
        t1.start();
        t2.start();
    }

}

2.

// 实现Runnnable 接口

class MyRun implements Runnable{

    @Override
    public void run() {
      for(int i=1;i<=100;i++)
      {

        System.out.println(Thread.currentThread().getName()+"Hello World!"+i);

      }
    }
    
}





public class Main{
    public static void main(String args[])
    {
        MyRun myrun=new MyRun();
        Thread mythread1=new Thread(myrun);
        Thread  mythread2=new Thread(myrun);

        mythread1.setName("Thread1:");
        mythread2.setName("Thread2:");

        mythread1.start();
        mythread2.start();
    }
}

 3.

//用callable接口,thread类,FutureTask类共同实现进程创建


import java.util.concurrent.Callable;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.FutureTask;


class MyRun implements Callable<Integer>{

    @Override
    public Integer call() throws Exception {
        for(int i=1;i<=100;i++)
        {
            System.out.println("Hello World!"+i);
        }
        return 0;
    }

      
}







public class Main {
    public static void main(String args[]) throws CancellationException, ExecutionException, InterruptedException
    {
       MyRun myrun = new MyRun();
       FutureTask<Integer> future=new FutureTask<>(myrun);
        Thread mythread=new Thread(future);

        mythread.start();


        Integer Result = future.get();
        System.out.println(Result);


    }
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值