1

私はこのコードを見直しています (C# で書かれています):

string root = match.Groups[1].Value,
                secon = match.Groups[2].Success ? match.Groups[2].Value.Substring(1) : string.Empty,
                third = match.Groups[3].Success ? match.Groups[3].Value.Substring(1) : string.Empty;

誰かがコンマの目的を説明できますか?

4

3 に答える 3

5

、およびそれぞれstringという名前の型の 3 つの変数を宣言します。このような:rootseconthird

int a, b, c;
于 2013-04-29T16:57:59.887 に答える
0

それらは変数を作成するためのショートカットとして使用され、あなたの例では、それらはすべて typestringです。

于 2013-04-29T16:58:30.950 に答える