constantpoolitem.java

来自「JASML is a java byte code compiler, prov」· Java 代码 · 共 18 行

JAVA
18
字号
/*
 * Author jyang
 * Created on 2006-4-3 14:35:22
 */
package com.jasml.classes;
/**
 * The super class for all the constant pool items.
 *
 */
public class ConstantPoolItem {
    public byte tag;
    public String tagName;
    public ConstantPoolItem(byte tag){
        this.tag = tag;
        tagName = Constants.CONSTANT_NAMES[tag];
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?