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

📄 opcodeinfo.java

📁 JASML is a java byte code compiler, providing yet another approach to view, write and edit java clas
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -