?? constantutf8.java
字號:
package AST;
import java.util.HashSet;import java.util.LinkedHashSet;import java.io.FileNotFoundException;import java.io.File;import java.util.*;import beaver.*;import java.util.ArrayList;import java.util.zip.*;import java.io.*;public class ConstantUtf8 extends CPInfo {
// Declared in ConstantPool.jrag at line 357 private String name; // Declared in ConstantPool.jrag at line 358 public ConstantUtf8(String name) { this.name = name; } // Declared in ConstantPool.jrag at line 361 public void emit(DataOutputStream out) throws IOException { out.writeByte(ConstantPool.CONSTANT_Utf8); out.writeUTF(name); } // Declared in ConstantPool.jrag at line 365 public String toString() { return pos + " ConstantUtf8: tag " + ConstantPool.CONSTANT_Utf8 + ", length: " + name.length() + ", bytes: " + name; }
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -