Class NEWARRAY
java.lang.Object
org.apache.bcel.generic.Instruction
org.apache.bcel.generic.NEWARRAY
- All Implemented Interfaces:
Cloneable, AllocationInstruction, ExceptionThrower, StackProducer
public class NEWARRAY
extends Instruction
implements AllocationInstruction, ExceptionThrower, StackProducer
NEWARRAY - Create new array of basic type (int, short, ...)
Stack: ..., count -> ..., arrayreftype must be one of T_INT, T_SHORT, ...
-
Field Summary
Fields inherited from class Instruction
length, opcode -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidCall corresponding visitor method(s).voiddump(DataOutputStream out) Dumps instruction as byte code to stream out.Class<?>[]Gets the exceptions that may be thrown by this instruction.final TypegetType()Gets the type of the constructed array.final byteGets the type code.protected voidinitFromFile(ByteSequence bytes, boolean wide) Reads needed data (for example index) from file.toString(boolean verbose) Long output format: <name of opcode> "["<opcode number>"]" "("<length of instruction>")"Methods inherited from class Instruction
consumeStack, copy, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, toString, toStringMethods inherited from interface StackProducer
produceStack
-
Constructor Details
-
NEWARRAY
-
NEWARRAY
-
-
Method Details
-
accept
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, that is, the most specific visitXXX() call comes last.- Specified by:
acceptin classInstruction- Parameters:
v- Visitor object.
-
dump
Dumps instruction as byte code to stream out.- Overrides:
dumpin classInstruction- Parameters:
out- Output stream.- Throws:
IOException- Thrown when an I/O exception of some sort has occurred.
-
getExceptions
Description copied from interface:ExceptionThrowerGets the exceptions that may be thrown by this instruction.- Specified by:
getExceptionsin interfaceExceptionThrower- Returns:
- The exceptions that may be thrown by this instruction.
-
getType
-
getTypecode
-
initFromFile
Reads needed data (for example index) from file.- Overrides:
initFromFilein classInstruction- Parameters:
bytes- byte sequence to read from.wide- "wide" instruction flag.- Throws:
IOException- Thrown if the implementation needs to read data from the file
-
toString
Description copied from class:InstructionLong output format: <name of opcode> "["<opcode number>"]" "("<length of instruction>")"- Overrides:
toStringin classInstruction- Parameters:
verbose- long/short format switch.- Returns:
- mnemonic for instruction.
-