StackOverflow 文件 D Language 教程 動態陣列和切片 陣列操作 陣列操作 Created: November-22, 2018 import std.stdio; void main() { int[] arr = [1, 2, 3]; // concatenate arr ~= 4; writeln(arr); // [1, 2, 3, 4] // per element operations arr[] += 10 writeln(arr); // [11, 12, 13, 14] } 宣告和初始化動態陣列和切片