java.lang.ClassLoader.getParent()方法範例


java.lang.ClassLoader.getParent() 方法返回的父類別載入器委託。一些實現可能使用null表示引導類載入器。此方法將返回在這種實現null,如果這個類載入器的父是引導類載入器。

宣告

以下是java.lang.ClassLoader.getParent()方法的宣告

public final ClassLoader getParent()

引數

  • NA

返回值

此方法返回的父類別載入器

異常

  • SecurityException -- 如果安全管理器存在並且其checkPermission方法不允許存取這個類載入器的父類別載入器。

例子

下面的例子顯示java.lang.ClassLoader.getParent()方法的使用。

package com.yiibai;

import java.lang.*;

public class ClassLoaderDemo {

  public static void main(String[] args) throws Exception {
     
    Class cls = Class.forName("ClassLoaderDemo");

    // returns the ClassLoader object associated with this Class
    ClassLoader cLoader = cls.getClassLoader();
    
    System.out.println(cLoader.getClass());
    
    // returns the parent ClassLoader
    System.out.println(cLoader.getParent());
  }
} 

讓我們來編譯和執行上面的程式,這將產生以下結果:

class sun.misc.Launcher$AppClassLoader
sun.misc.Launcher$ExtClassLoader@35ce36