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


Java Compiler command()用法及代碼示例


Compiler類command()方法

  • command() 方法可在java.lang包。
  • command() 方法用於檢查參數類型及其字段並執行與命令行相關的操作。
  • command() 方法是一個靜態方法,它可以通過類名訪問,如果我們嘗試使用類對象訪問該方法,那麽我們不會得到任何錯誤。
  • command() 方法可能會在執行 命令行 操作時拋出異常。
    NullPointerException :當給定的 Object 參數為 null 存在時,可能會拋出此異常。

用法:

    public static Object command(Object ob);

參數:

  • Object ob– 表示編譯器定義的參數。

返回值:

這個方法的返回類型是Object,它返回編譯器定義的值,它包括空值。

例:

// Java program to demonstrate the example 
// of Object command(Object ob) method of Compiler 

public class Parent {
    public static void main(String args[]) {
        // Creating a Parent and Child class object
        Parent p1 = new Parent();
        Parent p2 = new Child();

        // By using getClass() method is to get a Parent class
        Class cl1 = p1.getClass();
        System.out.println("p1.getClass() = " + cl1);

        // By using getClass() method is to get a Child class
        Class cl2 = p2.getClass();
        System.out.println("p2.getClass() = " + cl2);

        //By using command(Object ob) method to compile Child //class
        Object ob = Compiler.command("javac Child");
        System.out.println("ob = " + ob);
    }
}

class Child extends Parent {
    public void show() {
        System.out.println("We are in Child class:");
    }
}

輸出

p1.getClass() = class Parent
p2.getClass() = class Child
ob = null


相關用法


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