本文整理匯總了Java中org.objectweb.asm.Opcodes.LCONST_0屬性的典型用法代碼示例。如果您正苦於以下問題:Java Opcodes.LCONST_0屬性的具體用法?Java Opcodes.LCONST_0怎麽用?Java Opcodes.LCONST_0使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.objectweb.asm.Opcodes
的用法示例。
在下文中一共展示了Opcodes.LCONST_0屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: isXconst
/**
* Determine if the given opcode is a load of a constant (xCONST_y).
*
* @param opcode the opcode
* @return true if the opcode is one of the constant loading ones, false otherwise
*/
public static boolean isXconst(final int opcode) {
switch(opcode) {
case Opcodes.ICONST_0:
case Opcodes.ICONST_1:
case Opcodes.ICONST_2:
case Opcodes.ICONST_3:
case Opcodes.ICONST_4:
case Opcodes.ICONST_5:
case Opcodes.ICONST_M1:
case Opcodes.DCONST_0:
case Opcodes.DCONST_1:
case Opcodes.FCONST_0:
case Opcodes.FCONST_1:
case Opcodes.LCONST_0:
case Opcodes.LCONST_1:
return true;
}
return false;
}
示例2: visitInsn
/** {@inheritDoc} */
@Override
public void visitInsn(int opcode) {
// ces opcodes sont ceux possibles pour une initialisation inutile
lastInstructionIsInitConstant = opcode == Opcodes.ACONST_NULL
|| opcode == Opcodes.ICONST_0 || opcode == Opcodes.LCONST_0
|| opcode == Opcodes.FCONST_0 || opcode == Opcodes.DCONST_0;
}