Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 928 Bytes

File metadata and controls

30 lines (19 loc) · 928 Bytes

Unsafe

目錄

Unsafe 是 Rust 中告知編譯器「相信我」的關鍵字, 使用後編譯器就會解除對該 block 的記憶體處理限制, 但是程式設計師自己就要負起管理好記憶體的責任, 否則 Rust 設計上想要避免的眾多類型記憶體問題就可能會發生。

unsafe {
    // some code here
}