书栈网 · BookStack 本次搜索耗时 0.047 秒,为您找到 263422 个相关结果.
  • 16. Rust 切片 Slice

    十六、Rust 切片 Slice 16.1 定义切片的语法 16.2 切片图例 16.3 切片作为函数参数 16.4 可变更切片 十六、Rust 切片 Slice 一个 切片(slice) 就是指向一段内存的指针。 因此切片可用于访问内存块中连续区间内的数据。 一般情况下,能够在内存中连续区间存储数据的数据结构有: 数组 array、向量...
  • 11. Rust 函数 fn

    十一、Rust 函数 fn 11.1 划分代码到函数中 11.2 函数定义 11.2.1 定义函数的语法 11.2.2 范例:定义一个简单的函数 11.3 函数调用 11.3.1 函数调用的语法格式 11.3.2 范例 11.4 函数返回值 11.4.1 函数返回值语法格式 11.4.2 范例1 11.4.3 范例 2 11.4.4 范例...
  • 9.6. Rust Memory Management

    Memory Management in Rust Memory Management in Rust Memory management in Rust is a mix: Safe and correct like Java, but without a garbage collector. Depending on which abstra...
  • 6.4. Rust instrumentation plugin

    632 2020-01-06 《C2Rust Manual》
    Rustc cross-checker compiler plugin Usage Cross-checker options Rustc cross-checker compiler plugin This is a simple cross-check inserter for Rust code that is implemented as...
  • 不安全的 Rust

    不安全 Rust 不安全的超级力量 解引用裸指针 调用不安全函数或方法 创建不安全代码的安全抽象 使用 extern 函数调用外部代码 通过其它语言调用 Rust 函数 访问或修改可变静态变量 实现不安全 trait 何时使用不安全代码 不安全 Rust ch19-01-unsafe-rust.md commit c2b43bd...
  • 21.7. G - Rust 是如何开发的与 “Nightly Rust”

    附录 G:Rust 是如何开发的与 “Nightly Rust” 无停滞稳定 Choo, Choo! (开车啦,逃) 发布通道和发布时刻表(Riding the Trains) 不稳定功能 Rustup 和 Rust Nightly 的职责 RFC 过程和团队 附录 G:Rust 是如何开发的与 “Nightly Rust” appen...
  • 19. Rust 模块 Modules

    十九、Rust 模块 Modules 19.1 Rust 中模块的定义语法 19.1.1 公开的模块和公开的函数 19.1.2 范例: 定义一个模块 19.2 use 关键字 19.2.1 use 关键字的使用语法 19.2.2 范例 19.3 嵌套模块 / 多级模块 19.3.1 范例 19.4 范例:创建一个库 crate 并编写一些用例...
  • 18. Rust 枚举 Enum

    十八、Rust 枚举 Enum 18.1 枚举 18.2枚举定义 18.3使用枚举 18.3.1 范例 18.4 #[derive(Debug)] 注解 18.5 结构类型 struct 和枚举类型 enum 18.5.1 范例 18.6 Option 枚举 18.6.1 Option 枚举的定义代码如下 18.6.2 范例 18.7 m...
  • 15. Rust 借用 Borrowing

    十五、Rust 借用 Borrowing 15.1 什么是借用 Borrowing ? 15.2 可变引用 15.2.1 范例:字符串的可变引用 十五、Rust 借用 Borrowing 上一章节我们学习了 所有权 ( ownership ) 这个改变,知道了在 堆( heap ) 上分配的变量都有所有权。 上一章节,我们也以一种艰难的方式将...
  • 0. Welcome to Comprehensive Rust 🦀

    Welcome to Comprehensive Rust 🦀 Non-Goals Assumptions Welcome to Comprehensive Rust 🦀 This is a four day Rust course developed by the Android team. The course covers the full...