在Rust中,引用永远不能为null,因此在实际需要null(例如链表)的情况下,请使用以下 Option 类型: struct Element { value: i32, next: Option<Box<Element>>, }.
確定! 回上一頁