JAVA线程的创建方式

JAVA创建线程的两种方式

(我看网上有一部分帖子写JAVA创建线程有三种方式,其实是不完全正确的。java的官方文档中明确声明了只有两种创建方式,第三种使用线程池的其实并不算是,他的原理也是使用了implement Runnable的方式。)

There are two ways to create a new thread of execution. One is to declare a class to be a subclass of Thread. This subclass should override the run method of class Thread. An instance of the subclass can then be allocated and started. For example, a thread that computes primes larger than a stated value could be written as follows:

(有两种方法,可以创建新的线程。一种是将类声明为Thread的子类。这个子类的实例将会等待被分配和启动。例如,计算素数大于指定值的线程可以编写如下:)


     class PrimeThread extends Thread {
         long minPrime;
         PrimeThread(long minPrime) {
             this.minPrime = minPrime;
         }

         public void run() {
             // compute primes larger than minPrime
              . . .
         }
     }
 

 

The following code would then create a thread and start it running:

(下面的代码将创建一个线程并使其开始运行:)

     PrimeThread p = new PrimeThread(143);
     p.start();
 

 

The other way to create a thread is to declare a class that implements the Runnable interface. That class then implements the run method. An instance of the class can then be allocated, passed as an argument when creating Thread, and started. The same example in this other style looks like the following:

(另一种创建线程的方式是生命一个类 去实现 Runnable接口。然后,该类实现run方法。创建线程的另一种方法是声明一个实现Runnable接口的类。 然后,该类实现run方法。然后这个类的实例,在创建线程的时候当做一个参数传入,并启动。相同类型的例子如下所示:)


     class PrimeRun implements Runnable {
         long minPrime;
         PrimeRun(long minPrime) {
             this.minPrime = minPrime;
         }

         public void run() {
             // compute primes larger than minPrime
              . . .
         }
     }
 

 

The following code would then create a thread and start it running:

(下面的代码将创建一个线程并启动它运行:)

     PrimeRun p = new PrimeRun(143);
     new Thread(p).start();

上面的文档来源于JAVA官方文档(Thread部分):https://docs.oracle.com/en/java/javase/13/docs/api/java.base/java/lang/Thread.html

(上面是我小学英语的水平加上百度翻译的成果,可能不太对,欢迎各位客官提出问题)

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值