📄 dalign.java
字号:
// $Id: dAlign.java,v 1.2 1999/11/04 16:53:41 deberg Exp $package java6035.tools.ASM;/** * dAlign * * represents an .align directive in ASM file. ".align n" indicates the * next datum should be aligned on n byte boundary. N should be =1,2,4,8... * in powers of 2 */public class dAlign extends ASMDirective{ public int align; public dAlign(int n) { super(ASMDirective.ALIGN); this.align = n; } /** * Returns the string representation. */ public String toString() { return ".align "+align; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -