C#數組初始化方法詳解
C# 提供多種數組初始化語法:
使用默認值創建新數組:
<code class="language-csharp">int[] numbers = new int[5]; </code>
使用初始值創建新數組:
<code class="language-csharp">string[] names = new string[] { "John", "Mary", "Bob" };</code>
直接用值初始化數組:
<code class="language-csharp">int[] numbers = { 1, 2, 3, 4, 5 };</code>
使用初始化表達式創建新數組:
<code class="language-csharp">int[] numbers = new[] { 1, 2, 3, 4, 5 };</code>
集合表達式 (C# 12 新特性):
<code class="language-csharp">int[] numbers = [1, 2, 3, 4, 5];</code>
補充說明:
var
關鍵字 (C# 3 引入) 進行類型推斷。 new[]
表達式,同樣支持類型推斷。 以上是C#中的不同數組初始化語法是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!