StackOverflow 文件 D Language 教程 動態陣列和切片 宣告和初始化 宣告和初始化 Created: November-22, 2018 import std.stdio; void main() { int[] arr = [1, 2, 3, 4]; writeln(arr.length); // 4 writeln(arr[2]); // 3 // type inference still works auto arr2 = [1, 2, 3, 4]; writeln(typeof(arr2).stringof); // int[] } 片陣列操作