constantlargenumeric.java

来自「Java Bytecode Editor 是一个 JAVA 的字节码反汇编和修改」· Java 代码 · 共 110 行

JAVA
110
字号
/*
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public
    License as published by the Free Software Foundation; either
    version 2 of the license, or (at your option) any later version.
*/

package org.gjt.jclasslib.structures.constants;

import org.gjt.jclasslib.structures.CPInfo;
import org.gjt.jclasslib.structures.InvalidByteCodeException;

import java.io.*;

/**
    Base class for large numeric constant pool data structures.

    @author <a href="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
    @version $Revision: 1.1 $ $Date: 2005/11/01 13:18:24 $
*/
public abstract class ConstantLargeNumeric extends CPInfo {

    /** Length of the constant pool data structure in bytes. */
    public static final int SIZE = 8;
    
    /** <tt>high_bytes</tt> field. */
    protected int highBytes;
    /** <tt>low_bytes</tt> field. */
    protected int lowBytes;
    
    /**
        Get the <tt>high_bytes</tt> field of this constant pool entry.
        @return the <tt>high_bytes</tt> field
     */
    public int getHighBytes() {
        return highBytes;
    }

    /**
        Set the <tt>high_bytes</tt> field of this constant pool entry.
        @param highBytes the <tt>high_bytes</tt> field
     */
    public void setHighBytes(int highBytes) {
        this.highBytes = highBytes;
    }

    /**
        Get the <tt>low_bytes</tt> field of this constant pool entry.
        @return the <tt>low_bytes</tt> field
     */
    public int getLowBytes() {
        return lowBytes;
    }

    /**
        Set the <tt>low_bytes</tt> field of this constant pool entry.
        @param lowBytes the <tt>low_bytes</tt> field
     */
    public void setLowBytes(int lowBytes) {
        this.lowBytes = lowBytes;
    }
    
    /**
        Get the the <tt>high_bytes</tt> field of this constant pool
        entry as a hex string.
        @return the hex string
     */
    public String getFormattedHighBytes() {
        return printBytes(highBytes);
    }

    /**
        Get the the <tt>low_bytes</tt> field of this constant pool
        entry as a hex string.
        @return the hex string
     */
    public String getFormattedLowBytes() {
        return printBytes(lowBytes);
    }

    public void read(DataInput in)
        throws InvalidByteCodeException, IOException {
            
        highBytes = in.readInt();
        lowBytes = in.readInt();
    }

    public void write(DataOutput out)
        throws InvalidByteCodeException, IOException {
        
        out.writeInt(highBytes);
        out.writeInt(lowBytes);
    }
    
    public boolean equals(Object object) {
        if (!(object instanceof ConstantLargeNumeric)) {
            return false;
        }
        ConstantLargeNumeric constantLargeNumeric = (ConstantLargeNumeric)object;
        return super.equals(object) &&
               constantLargeNumeric.highBytes == highBytes &&
               constantLargeNumeric.lowBytes == lowBytes;
    }

    public int hashCode() {
        return super.hashCode() ^ highBytes ^ lowBytes;
    }
    
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?