當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Class getName()用法及代碼示例


java.lang.Class類的getName()方法用於獲取此實體的名稱。該實體可以是類,數組,接口等。該方法以String形式返回實體的名稱。

用法:

public String getName()

參數:此方法不接受任何參數。


返回值:此方法以字符串形式返回實體名稱。

下麵的程序演示了getName()方法。

示例1:

// Java program to demonstrate getName() method 
  
public class Test { 
    public static void main(String[] args) 
        throws ClassNotFoundException 
    { 
  
        // returns the Class object for this class 
        Class myClass = Class.forName("Test"); 
  
        System.out.println("Class represented by myClass: "
                           + myClass.toString()); 
  
        // Get the name of myClass 
        // using getName() method 
        System.out.println("Name of myClass: "
                           + myClass.getName()); 
    } 
}
輸出:
Class represented by myClass: class Test
Name of myClass: Test

示例2:

// Java program to demonstrate getName() method 
  
public class Test { 
  
    class Arr { 
    } 
  
    public static void main(String[] args) 
        throws ClassNotFoundException 
    { 
  
        // returns the Class object for A 
        Class arrClass = Arr.class; 
  
        // Get the name of arrClass 
        // using getName() method 
        System.out.println("Name of arrClass: "
                           + arrClass.getName()); 
    } 
}
輸出:
Name of arrClass: Test$Arr

參考: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#getName–



相關用法


注:本文由純淨天空篩選整理自srinam大神的英文原創作品 Class getName() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。