linenumbertableattr.java

来自「本人根据自己的实际情况」· Java 代码 · 共 37 行

JAVA
37
字号
/**
 * 
 */
package gen.info.attr;

import java.util.ArrayList;
import java.util.List;

/**
 * usually used in CodeAttr, used to debug
 * 
 * @author liuyi
 * 
 */
public class LineNumberTableAttr extends AttributeInfo {
	
	/** line_number_table_length */
	private List lineNumberTable;

	/**
	 * @param tag
	 */
	public LineNumberTableAttr(int tag) {
		super(tag);

		lineNumberTable = new ArrayList();
	}

}

class LineNumberTable {
	/** the begin of code array */
	private short startPc;
	
	/** the line number of source file, and each nonblank line has one */
	private short lineNumber;
}

⌨️ 快捷键说明

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