📄 constantpoolitem.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -