书籍 Programming Rust的封面

Programming Rust

Jim Blandy

出版时间

2016-08-25

ISBN

9781491927281

评分

★★★★★

标签

编程

书籍介绍

This practical book introduces systems programmers to Rust, the new and cutting-edge language that’s still in the experimental/lab stage. You’ll learn how Rust offers the rare and valuable combination of statically verified memory safety and low-level control—imagine C++, but without dangling pointers, null pointer dereferences, leaks, or buffer overruns.

Author Jim Blandy—the maintainer of GNU Emacs and GNU Guile—demonstrates how Rust has the potential to be the first usable programming language that brings the benefits of an expressive modern type system to systems programming. Rust’s rules for borrowing, mutability, ownership, and moves versus copies will be unfamiliar to most systems programmers, but they’re key to Rust’s unique advantages.

This book presents Rust’s rules clearly and economically; elaborates on their consequences; and shows you how to express the programs you want to write in terms that Rust can prove are free of a broad class of common errors.

目录
Preface
1. Why Rust?
Type Safety
2. A Tour of Rust
Downloading and Installing Rust

显示全部
用户评论
Rust 是一门系统编程语言,也是许多区块链底层编程语言,不论是旧欢 Parity,还是新贵 Libra;不论是微软还是 Linux 的核心开发者都对它青眼有加。 Rust 有一些很迷人的地方,比如:AOT,内存安全性,空指针安全性,还是丰富的类型系统,异或是庞大的社区生态。这些别的语言也有,但是都没有这么彻底。 Rust 的特点也十分突出,Ownership 和 borrow、references 还有 shadow,令人眼花缭乱,最最有趣的就是你写一段程序,编译器会 blame 你很多,你就感觉是在和编译器搏斗。 学习 Rust 不只是一时兴起(早在2015年我就听闻过),也是一种拥抱变化的态度,重要的是可以让你在看众多区块链代码时不会那么心慌。 语言的趋势反映了未来的主流开发群体
Programming Rust
还是去看官方那本吧
当枕边书读完了,除了中间有些地方介绍API比较枯燥,对核心概念的讲解、对不同做法的利弊分析都非常清晰,娓娓道来的风格读起来也很舒服
很棒的书,主要面向有经验的程序员(特别是 C++ 程序员),有些地方没有官方的书讲得详细。其实最后一章 Unsafe Code 没看完,以后再看。。。600页不到的书为了公司培训做了200多页PPT,熬了不少夜,也是醉了。。。
我读过官方2018的书. 两本书都没读完. 我这样评价两本书. 官方那本书the rust programming language, 会给人可读性更高的错觉, 论清晰和透彻, 这本书好得多, 会感觉作者想得非常清楚, 讲得也非常清楚. 只是前两章难, 以及引用讲得很深. 我觉得这是我读过关于rust入门书中最清晰的一本. 我更推荐这本书. 建议: 如果读前两章觉得难, 可以跳过. 因为前两章对初学者就有很多rust知识点了, 同样, 关于引用也讲得有点深. 一句话, 不爽就跳. 说实话, 泛型引用我都没学懂, 未入门的水平..
比官网的《The rust programming language》易懂详细
可以分得清&String 和&str了,,
这本书很不错啊,例子和rust的一些特性解释都还可以,不过rust还是有点门槛,我总觉得这门语言要是不想花很多精力就不要碰。