iconst_<i>


Operation Push int constant

iconst_<i>


Forms iconst_m1 = 2 (0x2)

iconst_0 = 3 (0x3)

iconst_1 = 4 (0x4)

iconst_2 = 5 (0x5)

iconst_3 = 6 (0x6)

iconst_4 = 7 (0x7)

iconst_5 = 8 (0x8)

Stack ... ..., <i>

Description Push the int constant <i> (-1, 0, 1, 2, 3, 4 or 5) onto the operand stack.

Notes Each of this family of instructions is equivalent to bipush <i> for the respective value of <i>, except that the operand <i> is implicit.