⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 constant_utf8.java

📁 JASML is a java byte code compiler, providing yet another approach to view, write and edit java clas
💻 JAVA
字号:
/*
 * Author jyang Created on 2006-4-3 14:39:06
 */
package com.jasml.classes;

public class Constant_Utf8 extends ConstantPoolItem {
    public String bytes;

    public Constant_Utf8(String bytes) {
        super(Constants.CONSTANT_Utf8);
        this.bytes = bytes;
    }

    public String toString() {
        return "Constant_Utf8[bytes=" + bytes + "]";
    }
}

⌨️ 快捷键说明

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