CodingRust基本语法 2023-09-30 Source Edit History 动态数组 Vector 创建动态数组Vec::new12let mut v = Vec::new();v.push(1); vec![] 宏1let v = vec![1, 2, 3];