📄 multianewarrayinstruction.java
字号:
/*
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.bytecode;
import org.gjt.jclasslib.io.ByteCodeInput;
import org.gjt.jclasslib.io.ByteCodeOutput;
import java.io.IOException;
/**
Describes the <tt>multianewarray</tt> instruction.
@author <a href="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
@version $Revision: 1.1 $ $Date: 2005/11/01 13:18:23 $
*/
public class MultianewarrayInstruction extends ImmediateShortInstruction {
private int dimensions;
/**
Constructor.
@param opcode the opcode.
*/
public MultianewarrayInstruction(int opcode) {
super(opcode);
}
public int getSize() {
return super.getSize() + 1;
}
/**
Get the number of dimensions for the new array.
@return the number of dimensions
*/
public int getDimensions() {
return dimensions;
}
/**
Set the number of dimensions for the new array.
@param dimensions the number of dimensions
*/
public void setDimensions(int dimensions) {
this.dimensions = dimensions;
}
public void read(ByteCodeInput in) throws IOException {
super.read(in);
dimensions = in.readUnsignedByte();
}
public void write(ByteCodeOutput out) throws IOException {
super.write(out);
out.writeByte(dimensions);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -