发布于 2016-07-08 01:00:00 | 183 次阅读 | 评论: 0 | 来源: 网友投递
Rust 编程语言
Rust是Mozilla开发的注重安全、性能和并发性的编程语言。创建这个新语言的目的是为了解决一个很顽疾的问题:软件的演进速度大大低于硬件的演进,软件在语言级别上无法真正利用多核计算带来的性能提升。Rust是针对多核体系提出的语言,并且吸收一些其他动态语言的重要特性,比如不需要管理内存,比如不会出现Null指针等等。
Rust 1.10 发布了,
你可以查看install Rust 1.10安装升级,该版本做了一些优化,使其编译性能较之前得以加快。该版本一大特点是,新增封装类型:cdylib。具体信息,可查看发布说明。
语言方面改进:
Allow concat_idents!
in type positions as well as in expression positions.
Copy
types are required to have a trivial implementation of Clone
.RFC 1521.
Fix #[derive(RustcEncodable)]
in the presence of other encode
methods.
panic!
can be converted to a runtime abort with the-C panic=abort
flag.RFC 1513.
Add a new crate type, 'cdylib'. cdylibs are dynamic libraries suitable for loading by non-Rust hosts.RFC 1510. Note that Cargo does not yet directly support cdylibs.
其他改进,可直接查看改进记录。