Merge pull request #3016 from LiuTianyou/v6-dev

修复 issue#3014
This commit is contained in:
Golden Looly
2023-03-26 23:08:26 +08:00
committed by GitHub
4 changed files with 63 additions and 1 deletions

View File

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