📄 constantdoubleinfo.java
字号:
/**
*
*/
package gen.info.constant;
import gen.ClassFile;
import java.io.DataOutputStream;
import java.io.IOException;
/**
* @author liuyi
*
*/
public class ConstantDoubleInfo extends CpInfo {
private int highBytes;
private int lowBytes;
/**
* @param tag
*/
public ConstantDoubleInfo(int highBytes, int lowBytes, ClassFile classFile) {
super(CONSTANT_Double, classFile);
this.highBytes = highBytes;
this.lowBytes = lowBytes;
}
public int getHighBytes(){
return this.highBytes;
}
public int getLowBytes(){
return this.lowBytes;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -