书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 4552 个相关结果.
  • 10. 互用性

    互用性 与其它编译系统的互用性 与RTOSs的互用性 互用性 Rust和C代码间的互用性始终取决于两种语言间的数据转换。为了实现它,在stdlib 中,有两个专用模块,叫做std::ffi 和std::os::raw 。 std::os::raw 处理底层基本类型,这些类型可以被编译器隐式地转换,因为Rust和C之间的内存布局足够相似或相同。...
  • Introduction

    1204 2019-06-07 《The Rustonomicon》
    The Rustonomicon The Dark Arts of Advanced and Unsafe Rust Programming The Rustonomicon The Dark Arts of Advanced and Unsafe Rust Programming Instead of the programs I had ...
  • 13.2. Elixir

    PRQL Installation Basic Usage Development Mac PRQL PRQL bindings for Elixir. Installation def deps do [ {: prql , "~> 0.1.0" } ] end Basic Us...
  • 11.2. Elixir

    PRQL Installation Basic Usage Development Mac PRQL PRQL bindings for Elixir. Installation def deps do [ {: prql , "~> 0.1.0" } ] end Basic Us...
  • 6.2. Elixir

    PRQL Installation Basic Usage Development Mac PRQL PRQL bindings for Elixir. Installation def deps do [ {: prql , "~> 0.1.0" } ] end Basic Us...
  • 5.7. JavaScript Interoperation

    JavaScript Interoperation Importing and Exporting JS Functions From the Rust Side From the JS Side Going Beyond Numerics Custom Sections JavaScript Interoperation Import...
  • 错误处理

    错误处理 错误处理 ch09-00-error-handling.md commit 1fedfc4b96c2017f64ecfcf41a0a07e2e815f24f Rust 对可靠性的执着也延伸到了错误处理。错误对于软件来说是不可避免的,所以 Rust 有很多特性来处理出现错误的情况。在很多情况下,Rust 要求你承认出错的可能性,并...
  • 3.2. Data Types

    Data Types Scalar Types Integer Types Floating-Point Types Numeric Operations The Boolean Type The Character Type Compound Types The Tuple Type The Array Type Accessing Arra...
  • 语句和表达式

    1245 2018-02-06 《RustPrimer 中文版》
    语句和表达式 声明语句 表达式语句 以上表达式语句中的部分例子引用自 Rust Reference 语句和表达式 rust是一个基于表达式的语言,不过它也有语句。rust只有两种语句:声明语句和表达式语句,其他的都是表达式。基于表达式是函数式语言的一个重要特征,表达式总是返回值。 声明语句 rust的声明语句可以分为两种,一种为...