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[] } 片数组操作