package main.coding_170423.jvm.cmd; import main.coding_170423.jvm.clz.ClassFile; /** * Created by peterchen on 2017/4/26. */ public class BiPushCmd extends OneOperandCmd{ public BiPushCmd(ClassFile clzFile, String opCode) { super(clzFile,opCode); } @Override public String toString() { return this.getOffset()+":"+ this.getOpCode()+" " + this.getReadableCodeText() + " " + this.getOperand(); } }