修复 issue#3014

This commit is contained in:
LiuTianyou
2023-03-26 22:20:05 +08:00
parent 7581ab6428
commit e001359671
4 changed files with 67 additions and 1 deletions

View File

@@ -91,4 +91,13 @@ public interface CharPool {
* 字符常量:百分号 {@code '%'}
*/
char PERCENT = '%';
/**
* 字符常量:等于 {@code '='}
*/
char EQUAL = '=';
/**
* 字符常量:减号 {@code '-'}
*/
char MINUS = '-';
}