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


Java ConstPool.getStringInfo方法代码示例

本文整理汇总了Java中scouter.javassist.bytecode.ConstPool.getStringInfo方法的典型用法代码示例。如果您正苦于以下问题:Java ConstPool.getStringInfo方法的具体用法?Java ConstPool.getStringInfo怎么用?Java ConstPool.getStringInfo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在scouter.javassist.bytecode.ConstPool的用法示例。


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

示例1: getConstantValue

import scouter.javassist.bytecode.ConstPool; //导入方法依赖的package包/类
/**
 * Returns the value of this field if it is a constant field.
 * This method works only if the field type is a primitive type
 * or <code>String</code> type.  Otherwise, it returns <code>null</code>.
 * A constant field is <code>static</code> and <code>final</code>.
 *
 * @return  a <code>Integer</code>, <code>Long</code>, <code>Float</code>,
 *          <code>Double</code>, <code>Boolean</code>,
 *          or <code>String</code> object
 *          representing the constant value. 
 *          <code>null</code> if it is not a constant field
 *          or if the field type is not a primitive type
 *          or <code>String</code>.
 */
public Object getConstantValue() {
    // When this method is modified,
    // see also getConstantFieldValue() in TypeChecker.

    int index = fieldInfo.getConstantValue();
    if (index == 0)
        return null;

    ConstPool cp = fieldInfo.getConstPool();
    switch (cp.getTag(index)) {
        case ConstPool.CONST_Long :
            return new Long(cp.getLongInfo(index));
        case ConstPool.CONST_Float :
            return new Float(cp.getFloatInfo(index));
        case ConstPool.CONST_Double :
            return new Double(cp.getDoubleInfo(index));
        case ConstPool.CONST_Integer :
            int value = cp.getIntegerInfo(index);
            // "Z" means boolean type.
            if ("Z".equals(fieldInfo.getDescriptor()))
                return new Boolean(value != 0);
            else
                return new Integer(value);
        case ConstPool.CONST_String :
            return cp.getStringInfo(index);
        default :
            throw new RuntimeException("bad tag: " + cp.getTag(index)
                                       + " at " + index);
    }
}
 
开发者ID:scouter-project,项目名称:scouter,代码行数:45,代码来源:CtField.java


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