?? str_token.java
字號(hào):
package java_cup.runtime;/** This subclass of token represents symbols that need to maintain one * String value as an attribute. It maintains that value in the public * field str_val. * * @see java_cup.runtime.int_token * @version last updated: 11/25/95 * @author Scott Hudson */public class str_token extends token { /** Full constructor. */ public str_token(int term_num, String v) { /* super class does most of the work */ super(term_num); str_val = v; } /** Constructor for value defaulting to an empty string. */ public str_token(int term_num) { this(term_num, ""); } /** The stored string value. */ public String str_val;};
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -