?? constant_string_info.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 CONSTANT_String_Info extends CONSTANT_Info {
// Declared in BytecodeCONSTANT.jrag at line 216 public int string_index; // Declared in BytecodeCONSTANT.jrag at line 218 public CONSTANT_String_Info(BytecodeParser parser) { super(parser); string_index = p.u2(); } // Declared in BytecodeCONSTANT.jrag at line 223 public Expr expr() { CONSTANT_Utf8_Info i = (CONSTANT_Utf8_Info)p.constantPool[string_index]; return new StringLiteral(i.string); } // Declared in BytecodeCONSTANT.jrag at line 228 public String toString() { return "StringInfo: " + p.constantPool[string_index]; }
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -