⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 simple.java

📁 《java virtual machine》是研究jvm的一本书
💻 JAVA
字号:
import jas.*;
import java.io.*;
import sun.tools.java.RuntimeConstants;

//
// This is program that makes calls into the jas package
// to generate a class that does nothing at all.
//

class simple implements RuntimeConstants
{
  public static void main(String argv[])
    throws jasError, IOException
  {

                                // CodeAttr's contain the body of
                                // a method.

    CodeAttr init = new CodeAttr();
    init.addInsn(new Insn(opc_aload_0));
    init.addInsn(new Insn(opc_invokenonvirtual,
                          new MethodCP("java/lang/Object", "<init>", "()V")));
    init.addInsn(new Insn(opc_return));


                                // ClassEnv's are used as a container
                                // to hold all information about a class.

    ClassEnv nclass = new ClassEnv();
    nclass.setClass(new ClassCP("out"));
    nclass.setSuperClass(new ClassCP("java/lang/Object"));



                                // Add the init code to the class.
    nclass.addMethod((short)ACC_PUBLIC, "<init>", "()V", init, null);


                                // write it all out
    nclass.write(new DataOutputStream
                 (new FileOutputStream("out.class")));
  }
}

    

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -