java getname
线程类最终字符串getName() (Thread Class final String getName())
This method is available in package java.lang.Thread.getName().
软件包java.lang.Thread.getName()中提供了此方法。
This method is used to return the name of this thread.
此方法用于返回该线程的名称。
This method is not static so this method is accessible with Thread class object it is not accessible with the class name.
此方法不是静态的,因此该方法可通过Thread类对象访问,而无法通过类名称访问。
This method is final so we can't override this method in our program.
此方法是最终方法,因此我们无法在程序中覆盖此方法。
The return type of this method is String so it returns the name of the thread as a string (i.e. Name will be in the string).
该方法的返回类型为String,因此它以字符串的形式返回线程的名称(即Name将在字符串中)。
This method does not raise any exception.
此方法不会引发任何异常。
Syntax:
句法:
final String getName(){
}
Parameter(s):
参数:
We don't pass any object as a parameter in the method of the Thread.
我们不会在Thread方法中将任何对象作为参数传递。
Return value:
返回值:
The return type of this method is String, it returns the name of this thread as a string.
该方法的返回类型为String ,它以字符串形式返回此线程的名称。
Java程序演示getName()方法的示例 (Java program to demonstrate example of getName() method)
/* We will use Thread class methods so we are importing
the package but it is not mandate because
it is imported by default
*/
import java.lang.Thread;
class GetThreadName extends Thread {
// Override run() of Thread class
public void run() {
System.out.println("The priority of this thread is : " + Thread.currentThread().getPriority());
}
public static void main(String[] args) {
// Creating an object of GetThreadName class
GetThreadName gt_name = new GetThreadName();
// We are setting the name of the thread GetThreadName
gt_name.setName("GetThreadName");
/* Calling start() method with GetThreadName class
object of Thread class
*/
gt_name.start();
/* By using getName() method to return the name of
this thread [GetThreadName ]
*/
System.out.println("The name of this thread is " + " " + gt_name.getName());
}
}
Output
输出量
E:\Programs>javac GetThreadName.java
E:\Programs>java GetThreadName
The name of this thread is GetThreadName
The priority of this thread is :5
翻译自: https://www.includehelp.com/java/thread-class-final-string-getname-method-with-example.aspx
java getname