当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。