Rust 1.3 发布,新的子字符串匹配算法

jopen 9年前

Rust 是 Mozilla 的一个新的编程语言,由web语言的领军人物Brendan Eich(js之父),Dave Herman以及Mozilla公司的Graydon Hoare 合力开发。

创建这个新语言的目的是为了解决一个很顽疾的问题:软件的演进速度大大低于硬件的演进,软件在语言级别上无法真正利用多核计算带来的性能提升。Rust是针对多核体系提出的语言,并且吸收一些其他动态语言的重要特性,比如不需要管理内存,比如不会出现Null指针等等。

特点:

  • 零成本的抽象

  • 移动语义

  • 保证内存安全

  • 线程没有数据竞争

  • trait-based泛型

  • 模式匹配

  • 类型推断

  • 最小运行时

  • 高效的C绑定

Rust 1.3 发布,该版本最显著的变化是 announcement API 的稳定性及性能的提升。此外,还有新的子字符串匹配算法,一个快速的 zero-filling 方法用于初始化和调整向量,提升了 Read::read_to_end 函数的速度(via lwn.net)  。

Rust 1.3发行日志的更新列表如下:

Highlights

  • The new object lifetime defaults have been turned on after a cycle of warnings about the change. Now types like &'a Box<Trait> (or &'a Rc<Trait>, etc) will change from being interpreted as &'a Box<Trait+'a> to &'a Box<Trait+'static>.

  • The Rustonomicon is a new book in the official documentation that dives into writing unsafe Rust.

  • The Duration API, has been stabilized. This basic unit of timekeeping is employed by other std APIs, as well as out-of-tree time crates.

Breaking Changes

Language

Libraries

Misc

更多内容可查看:Rust-1.3


来自:http://www.oschina.net/news/66299/rust-1-3