There are two ways to create a thread in Java: using the Thread class and using the Runnable interface. When using the Runnable interface, you need to create a Thread instance. Therefore, whether you create a thread through the Thread class or the Runnable interface, you must create an instance of the Thread class or its subclass. The constructor of the Thread class has been overloaded eight times. The constructor is as follows:
public Thread( ); public Thread(Runnable target); public Thread(String name); public Thread(Runnable target, String name); public Thread(ThreadGroup group, Runnable target); public Thread(ThreadGroup group, String name); public Thread(ThreadGroup group, Runnable target, String name); public Thread(ThreadGroup group, Runnable target, String name, long stackSize);
Runnable target
An instance of a class that implements the Runnable interface. It should be noted that the Thread class also implements the Runnable interface, therefore, instances of classes inherited from the Thread class can also be passed into this constructor as targets.
String name
The name of the thread. This name can be set through the setName method of the Thread class after creating a Thread instance. If the thread name is not set, the thread uses the default thread name: Thread-N. N is the order in which the thread is created and is a non-repeating positive integer.
ThreadGroup group
The thread group to which the currently created thread belongs. If no thread group is specified, all threads are added to a default thread group. Details about thread groups will be discussed in detail in later chapters.
long stackSize
The size of the thread stack. This value is generally an integer multiple of the CPU page. For example, the page size of x86 is 4KB. Under the x86 platform, the default thread stack size is 12KB.
An ordinary Java class can become a thread class as long as it inherits from the Thread class. And the thread code can be executed through the start method of the Thread class. Although subclasses of the Thread class can be instantiated directly, the run method of the Thread class must be overridden in the subclass to actually run the thread's code. The following code gives an example of using the Thread class to create a thread:
package mythread; public class Thread1 extends Thread { public void run() { System.out.println(this.getName()); } public static void main(String[] args) { System.out.println(Thread.currentThread().getName()); Thread1 thread1 = new Thread1(); Thread1 thread2 = new Thread1 (); thread1.start(); thread2.start(); } }
The above code creates two threads: thread1 and thread2. Lines 005 to 008 in the above code are the run method of the Thread1 class. When the start method is called on lines 014 and 015, the system automatically calls the run method. In line 007, this.getName() is used to output the name of the current thread. Since the thread name is not specified when the thread is created, the thread name output is the system's default value, which is in the form of Thread-n. The thread name of the main thread is output on line 011.
The running results of the above code are as follows:
main
Thread-0
Thread-1
As can be seen from the above output results, *** The main line output is the name of the main thread. The following Thread-1 and Thread-2 are the output results of thread1 and thread2 respectively.
Note: Any Java program must have a main thread. Generally, the name of this main thread is main. Only by creating additional threads in the program can it be considered a true multi-threaded program. In other words, a multi-threaded program must have more than one thread.
The Thread class has an overloaded constructor to set the thread name. In addition to using the constructor method to set the thread name when creating a thread, you can also use the setName method of the Thread class to modify the thread name. To set the thread name through the constructor of the Thread class, you must use the public Thread(String name) constructor of the Thread class in the subclass of Thread. Therefore, you must also add a thread for passing in the subclass of Thread. Name constructor. The following code gives an example of setting the thread name:
package mythread; public class Thread2 extends Thread { private String who; public void run() { System.out.println(who + ":" + this.getName()); } public Thread2(String who) { super(); this.who = who; } public Thread2(String who, String name) { super(name); this.who = who; } public static void main(String[] args) { Thread2 thread1 = new Thread2 ("thread1", "MyThread1"); Thread2 thread2 = new Thread2 ("thread2"); Thread2 thread3 = new Thread2 ("thread3"); thread2.setName("MyThread2"); thread1.start(); thread2.start(); thread3.start(); }
There are two constructors in the class:
Line 011: public sample2_2(String who)
This constructor has one parameter: who. This parameter is used to identify the currently created thread. Thread's default constructor public Thread() is still called in this constructor.
Line 016: public sample2_2(String who, String name)
The who in this constructor has the same meaning as the who in the first constructor, and the name parameter is the thread's name. In this constructor, the public Thread(String name) constructor of the Thread class is called, which is super(name) on line 018.
Three threads are established in the main method: thread1, thread2 and thread3. Among them, thread1 sets the thread name through the construction method, thread2 modifies the thread name through the setName method, and thread3 does not set the thread name.
The running results are as follows:
thread1:MyThread1
thread2:MyThread2
thread3:Thread-1
As can be seen from the above output results, thread1 and The thread names of thread2 have been modified, but the thread name of thread3 is still the default value: Thread-1. The reason why the thread name of thread3 is not Thread-2 but Thread-1 is because the name of thread2 has been specified in line 026. Therefore, when thread3 is started, the thread name of thread3 is set to Thread-1. So you will get the above output.
Note: You can use setName to set the thread name before and after calling the start method. However, using setName to modify the thread name after calling the start method will cause uncertainty, which means that it may not be until the run method is executed. setName will be executed. If you want to use the thread name in the run method, there will be a phenomenon that although the setName method is called, the thread name is not modified.
The start method of the Thread class cannot be called multiple times. For example, the thread1.start() method cannot be called twice. Otherwise an IllegalThreadStateException will be thrown.
The above is the detailed content of How to use Thread class to create threads in Java?. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
