⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ret.java

📁 代码是一个分类器的实现,其中使用了部分weka的源代码。可以将项目导入eclipse运行
💻 JAVA
字号:
package de.fub.bytecode.generic;import java.io.*;import de.fub.bytecode.util.ByteSequence;/**  * RET - Return from subroutine * * <PRE>Stack: ..., -&gt; ..., address</PRE> * * @version $Id: RET.java,v 1.9 2001/07/03 08:20:18 dahm Exp $ * @author  <A HREF="http://www.berlin.de/~markus.dahm/">M. Dahm</A> */public class RET extends Instruction implements IndexedInstruction, TypedInstruction {  private boolean wide;  private int     index; // index to local variable containg the return address  /**   * Empty constructor needed for the Class.newInstance() statement in   * Instruction.readInstruction(). Not to be used otherwise.   */  RET() {}  public RET(int index) {    super(de.fub.bytecode.Constants.RET, (short)2);    setIndex(index);   // May set wide as side effect  }  /**   * Dump instruction as byte code to stream out.   * @param out Output stream   */  public void dump(DataOutputStream out) throws IOException {    if(wide)      out.writeByte(de.fub.bytecode.Constants.WIDE);    out.writeByte(opcode);    if(wide)      out.writeShort(index);    else      out.writeByte(index);  }  private final void setWide() {    if(wide = index > de.fub.bytecode.Constants.MAX_BYTE)      length = 4; // Including the wide byte      else      length = 2;  }  /**   * Read needed data (e.g. index) from file.   */  protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException  {    this.wide = wide;    if(wide) {      index  = bytes.readUnsignedShort();      length = 4;    } else {      index = bytes.readUnsignedByte();      length = 2;    }  }  /**   * @return index of local variable containg the return address   */  public final int getIndex() { return index; }  /**   * Set index of local variable containg the return address   */  public final void setIndex(int n) {     if(n < 0)      throw new ClassGenException("Negative index value: " + n);    index = n;    setWide();  }  /**   * @return mnemonic for instruction   */  public String toString(boolean verbose) {    return super.toString(verbose) + " " + index;  }    /** @return return address type   */  public Type getType(ConstantPoolGen cp) {      return ReturnaddressType.NO_TARGET;  }  /**   * Call corresponding visitor method(s). The order is:   * Call visitor methods of implemented interfaces first, then   * call methods according to the class hierarchy in descending order,   * i.e., the most specific visitXXX() call comes last.   *   * @param v Visitor object   */  public void accept(Visitor v) {    v.visitRET(this);  }}

⌨️ 快捷键说明

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