constantdoubleinfo.java

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

JAVA
39
字号
/**
 *
 */
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 + =
减小字号Ctrl + -
显示快捷键?