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()final byteprotected 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
- Returns:
- numeric code for basic element type.
-
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- may be 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.
-