?? dskip.java
字號:
// $Id: dSkip.java,v 1.2 1999/11/04 16:53:41 deberg Exp $package java6035.tools.ASM;/** * dSkip * * represents the ".skip" directive of SPARC. Indicates an unitialised * sequence of N bytes, give .skip N. N must be non-negative. */public class dSkip extends ASMDirective{ public int skip; public dSkip(int n) { super(ASMDirective.SKIP); this.skip = n; } /** * Returns the string representation. */ public String toString() { return ".skip "+skip; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -