bool checked;
... 1
public static void main()
{ ... } 2
int matched = symbol.Match(input) 3
if (matched > 0)
{
....
}
char optional = "?";
string theory = 'complex'; 4
int matched = 0_or_more(symbol);
... 5
第1段代碼的錯誤:checked是一個關鍵字
第2段代碼的錯誤:不是main,而是Main
第3段代碼的錯誤:變量聲明語句沒有分號 www.2cto.com
第4段代碼的錯誤:字符值必須用單引號表示,字符串必須用雙引號表示
第5段代碼的錯誤:第一個錯誤是標識符不能以數字開頭;第二個錯誤是不能用下劃線作標識符。
作者:ershouyage