當前位置: 首頁>>代碼示例>>Java>>正文


Java Opcodes.LCONST_0屬性代碼示例

本文整理匯總了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;
}
 
開發者ID:skhalifa,項目名稱:QDrill,代碼行數:26,代碼來源:AsmUtil.java

示例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;
}
 
開發者ID:evernat,項目名稱:dead-code-detector,代碼行數:8,代碼來源:UselessInitClassVisitor.java


注:本文中的org.objectweb.asm.Opcodes.LCONST_0屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。