- Rust Essentials(Second Edition)
- Ivo Balbaert
- 155字
- 2021-07-02 15:30:35
Comparison with other languages
Dynamic languages such as Ruby or Python give you the initial speed of coding development, but the price is paid later in:
- Writing more tests
- Runtime crashes
- Production outages
The Rust compiler forces you to get a lot of things right from the beginning at compile time, which is the least expensive place to identify and fix bugs.
Rust's object orientation is not as explicit or evolved as common object-oriented languages such as Java, C# or Python, as it doesn't have classes. Compared with Go, Rust gives you more control over memory and resources and so it lets you code on a lower level. Go also works with a garbage collector; it has no generics and no mechanism to prevent data races between its goroutines used in concurrency. Julia is focused on numerical computing performance, works with a JIT compiler, and also doesn't give you that low-level control as Rust does.
- 零起步玩轉掌控板與Mind+
- Web Scraping with Python
- Mastering phpMyAdmin 3.4 for Effective MySQL Management
- Java Web程序設計
- 零基礎學Python數據分析(升級版)
- Big Data Analytics
- C++ 從入門到項目實踐(超值版)
- KnockoutJS Starter
- Apache Spark 2.x for Java Developers
- Hadoop 2.X HDFS源碼剖析
- JavaScript程序設計:基礎·PHP·XML
- Spring Data JPA從入門到精通
- PHP+MySQL Web應用開發教程
- micro:bit軟件指南
- C#程序設計基礎與實踐