- Rust Essentials(Second Edition)
- Ivo Balbaert
- 263字
- 2021-07-02 15:30:34
Starting with Rust
Rust is a programming language developed at Mozilla Research and backed up by a big open source community. Its development was started in 2006 by language designer Graydon Hoare. Mozilla began sponsoring it in 2009 and it was first presented officially in 2010. Work on this went through a lot of iterations, culminating in early 2015 in the first stable production, version 1.0.0, developed by the Rust Project Developers, consisting of the Rust team at Mozilla and an open source community of over 1800 contributors. Since then, Rust has developed in a steady pace; its current stable version is 1.20.0.
Rust is based on clear and solid principles. It is a systems programming language, equaling C and C++ in its capabilities. It rivals idiomatic C++ in speed, but it lets you work in a much safer way by forbidding code that could cause program crashes due to memory problems. Moreover, it makes concurrent programming and parallel execution on multi-core machines memory safe without garbage collection--it is the only language that does that. By design, Rust eliminates the corruption of shared data through concurrent access, called data races.
This chapter will present you with the main reasons why Rust's popularity and adoption are steadily increasing. Then, we'll set up a working Rust development environment.
We will cover the following:
- The advantages of Rust
- The trifecta of Rust--safe, fast and concurrent
- The stability of Rust and its evolution
- The success of Rust
- Using Rust
- Installing Rust
- The Rust compiler
- Our first program
- Working with Cargo
- Developer tools
- The Standard Library
- Learn TypeScript 3 by Building Web Applications
- Mastering OpenCV Android Application Programming
- 造個小程序:與微信一起干件正經事兒
- 薛定宇教授大講堂(卷Ⅳ):MATLAB最優化計算
- 前端架構:從入門到微前端
- VMware虛擬化技術
- 零基礎學單片機C語言程序設計
- Web Development with MongoDB and Node(Third Edition)
- Kotlin從基礎到實戰
- Mastering openFrameworks:Creative Coding Demystified
- 第一行代碼 C語言(視頻講解版)
- Creating Stunning Dashboards with QlikView
- Natural Language Processing with Java and LingPipe Cookbook
- Java網絡編程實戰
- Extending Unity with Editor Scripting