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


Java ClassLoader getParent()用法及代碼示例


ClassLoader類getParent()方法

  • getParent() 方法可在java.lang包。
  • getParent() 方法用於為委托返回父類加載器。
  • getParent() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • getParent() 方法是最終方法,它不會在子類中覆蓋。
  • getParent() 方法可能在返回 ClassLoader 時拋出異常。
    SecurityException: 當安全管理器存在時,它的 checkPermission() 方法不允許訪問此加載器的父類加載器時,可能會拋出此異常。

用法:

    protected  final ClassLoader getParent();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是ClassLoader,它返回一個父類加載器。

例:

// Java program to demonstrate the example 
// of ClassLoader getParent() method of ClassLoader 

public class GetParentOfClassLoader {
 public static void main(String args[]) throws ClassNotFoundException {

  // It loads the class 
  Class cl = Class.forName("GetParentOfClassLoader");

  // It returns the class loader associated with 
  // the given class
  ClassLoader loader = cl.getClassLoader();

  // Display Loader Class
  System.out.println("Loader Class:");
  System.out.println(loader.getClass());

  System.out.println();

  // Display Loader Class Parent
  System.out.println("Loader Parent Class:");
  System.out.println(loader.getParent());
 }
}

輸出

Loader Class:
class jdk.internal.loader.ClassLoaders$AppClassLoader

Loader Parent Class:
[email protected]


相關用法


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