Java 线程 run() 方法



描述

如果此线程是使用单独的 Runnable run 对象构造的,则调用Java Thread run() 方法,否则此方法不执行任何操作并返回。

声明

以下是java.lang.Thread.run() 方法的声明

public void run()

参数

返回值

此方法不返回值。

异常

示例:运行实现 Runnable 接口的线程

以下示例显示了 Java Thread run() 方法的使用。在此程序中,我们通过实现 Runnable 接口创建了一个线程类 ThreadDemo。在构造函数中,使用 new Thread 创建了一个新线程。使用 start() 启动线程,该线程在安排线程运行时依次调用 run() 方法。

package com.tutorialspoint;

public class ThreadDemo implements Runnable {

   Thread t;
   ThreadDemo() {
    
      // thread created
      t = new Thread(this, "Admin Thread");
     
      // prints thread created
      System.out.println("thread  = " + t);
      
      // this will call run() function
      System.out.println("Calling run() function... ");
      t.start();
   }

   public void run() {
      System.out.println("Inside run() function");
   }

   public static void main(String args[]) {
      new ThreadDemo();
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

thread = Thread[Admin Thread,5,main]
Calling run() function...
Inside run() function

示例:运行扩展 Thread 类的线程

以下示例显示了 Java Thread run() 方法的使用。在此程序中,我们通过扩展 Thread 类创建了一个线程类 ThreadDemo。在构造函数中,使用 new Thread 创建了一个新线程。使用 start() 启动线程,该线程在安排线程运行时依次调用 run() 方法。

package com.tutorialspoint;

public class ThreadDemo extends Thread {

   Thread t;
   ThreadDemo() {
    
      // thread created
      t = new Thread(this, "Admin Thread");
     
      // prints thread created
      System.out.println("thread  = " + t);
      
      // this will call run() function
      System.out.println("Calling run() function... ");
      t.start();
   }

   public void run() {
      System.out.println("Inside run() function");
   }

   public static void main(String args[]) {
      new ThreadDemo();
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

thread = Thread[Admin Thread,5,main]
Calling run() function...
Inside run() function
java_lang_thread.htm
广告