当前位置: 首页>>代码示例>>Java>>正文


Java Constants.IUSHR属性代码示例

本文整理汇总了Java中com.sun.org.apache.bcel.internal.Constants.IUSHR属性的典型用法代码示例。如果您正苦于以下问题:Java Constants.IUSHR属性的具体用法?Java Constants.IUSHR怎么用?Java Constants.IUSHR使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.sun.org.apache.bcel.internal.Constants的用法示例。


在下文中一共展示了Constants.IUSHR属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getType

/** @return type associated with the instruction
 */
public Type getType(ConstantPoolGen cp) {
  switch(opcode) {
  case Constants.DADD: case Constants.DDIV: case Constants.DMUL:
  case Constants.DNEG: case Constants.DREM: case Constants.DSUB:
    return Type.DOUBLE;

  case Constants.FADD: case Constants.FDIV: case Constants.FMUL:
  case Constants.FNEG: case Constants.FREM: case Constants.FSUB:
    return Type.FLOAT;

  case Constants.IADD: case Constants.IAND: case Constants.IDIV:
  case Constants.IMUL: case Constants.INEG: case Constants.IOR: case Constants.IREM:
  case Constants.ISHL: case Constants.ISHR: case Constants.ISUB:
  case Constants.IUSHR: case Constants.IXOR:
    return Type.INT;

  case Constants.LADD: case Constants.LAND: case Constants.LDIV:
  case Constants.LMUL: case Constants.LNEG: case Constants.LOR: case Constants.LREM:
  case Constants.LSHL: case Constants.LSHR: case Constants.LSUB:
  case Constants.LUSHR: case Constants.LXOR:
    return Type.LONG;

  default: // Never reached
    throw new ClassGenException("Unknown type " + opcode);
  }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:28,代码来源:ArithmeticInstruction.java


注:本文中的com.sun.org.apache.bcel.internal.Constants.IUSHR属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。