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

📄 linenumbertableattr.java

📁 本人根据自己的实际情况
💻 JAVA
字号:
/**
 * 
 */
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -