Rust语言学习

rust这门语言,有非常好的学习文档,工具链。

官网

Rust Programming Languagep

Learn Rust

各种由浅入深的学习文档

Learn Rust - Rust Programming LanguageA language empowering everyone to build reliable and efficient software.Rust语言学习_第1张图片https://www.rust-lang.org/learn

Playground

简易的web版的IDE。

Rust PlaygroundA browser interface to the Rust compiler to experiment with the languagehttps://play.rust-lang.org

入门书

The Rust Programming Languagehttps://doc.rust-lang.org/book/#the-rust-programming-language

 这是前边这本的中文翻译版。可能有些东西会显示不出来。Rust 程序设计语言 - Rust 程序设计语言 简体中文版Rust 程序设计语言 简体中文版https://kaisery.github.io/trpl-zh-cn/

Introduction - Rust By ExampleRust by Example (RBE) is a collection of runnable examples that illustrate various Rust concepts and standard libraries.https://doc.rust-lang.org/stable/rust-by-example/

Cargo

他是rust语言的项目构建与包管理工具,使用起来非常简单方便。和c++的工具链比起来,感觉跨越了 一个世纪。

Cargo Guide - The Cargo Bookhttps://doc.rust-lang.org/cargo/guide/

标准库文档

std - RustThe Rust Standard Libraryhttps://doc.rust-lang.org/std/index.html

详细解释标准库,文档些的很好,很多例子,在这些例子代码块中可以点击【RUN】,直接进入到playground进行代码的修改,执行。 

crates.io与docs.rs

cartes.io是各种代码库(crate)的公开发布仓库(crate registry),每个crate一般都会有很好的使用说明。

docs.rs是代码库的帮助文档,crates.io上发布的代码库(crate),都会在docs.io上提供相应的文档。

https://crates.iohttps://crates.io

Docs.rshttps://docs.rs/

 docs.rs上也链接了学习rust最常用的一些文档,如下图红色方框所标记的地方。本文章罗列的一些资源工具大多都在其中。

Rust语言学习_第2张图片

你可能感兴趣的:(rust,rust,学习,开发语言)