opcodeinfo.java

来自「JASML is a java byte code compiler, prov」· Java 代码 · 共 33 行

JAVA
33
字号
package com.jasml.helper;

public class OpcodeInfo {
	public byte opcode;

	public String opname;

	public short operandsCount; // the number of operands this opcode has

	public short[] operandsLength; // length of each operands, in byte

	public int consumeStack;

	public int produceStack;

	//bellow are descriptions copied from Java Language Specification
	public String operation;

	public String format;

	public String forms;

	public String operandStack;

	public String description;

	public String runtimeExceptions;

	public String linkingExceptions;

	public String notes;
}

⌨️ 快捷键说明

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