Rust 1.3 发布,新的子字符串匹配算法
Rust 是 Mozilla 的一个新的编程语言,由web语言的领军人物Brendan Eich(js之父),Dave Herman以及Mozilla公司的Graydon Hoare 合力开发。
创建这个新语言的目的是为了解决一个很顽疾的问题:软件的演进速度大大低于硬件的演进,软件在语言级别上无法真正利用多核计算带来的性能提升。Rust是针对多核体系提出的语言,并且吸收一些其他动态语言的重要特性,比如不需要管理内存,比如不会出现Null指针等等。
特点:
-
零成本的抽象
-
移动语义
-
保证内存安全
-
线程没有数据竞争
-
trait-based泛型
-
模式匹配
-
类型推断
-
最小运行时
-
高效的C绑定
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
DurationAPI, has been stabilized. This basic unit of timekeeping is employed by other std APIs, as well as out-of-tree time crates.
Breaking Changes
-
The new object lifetime defaults have been turned on after a cycle of warnings about the change.
-
There is a known regression in how object lifetime elision is interpreted, the proper solution for which is undetermined.
-
The
#[prelude_import]attribute, an internal implementation detail, was accidentally stabilized previously. It has been put behind theprelude_importfeature gate. This change is believed to break no existing code. -
The behavior of
size_of_valandalign_of_valismore sane for dynamically sized types. Code that relied on the previous behavior is thought to be broken. -
The
dropckrules, which checks that destructors can't access destroyed values, have been updated to match theRFC. This fixes some soundness holes, and as such will cause some previously-compiling code to no longer build.
Language
-
The new object lifetime defaults have been turned on after a cycle of warnings about the change.
-
Semicolons may now follow types and paths in macros.
-
The behavior of
size_of_valandalign_of_valismore sane for dynamically sized types. Code that relied on the previous behavior is not known to exist, and suspected to be broken. -
'staticvariables may now be recursive. -
refbindings choose betweenDerefandDerefMutimplementations correctly. -
The
dropckrules, which checks that destructors can't access destroyed values, have been updated to match theRFC.
Libraries
-
The
DurationAPI, has been stabilized, as well as thestd::timemodule, which presently contains onlyDuration. -
Box<str>andBox<[T]>both implementClone. -
The owned C string,
CString, implementsBorrowand the borrowed C string,CStr, implementsToOwned. The two of these allow C strings to be borrowed and cloned in generic code. -
Errortrait objects can be downcast to their concrete typesin many common configurations, using theis,downcast,downcast_refanddowncast_mutmethods, similarly to theAnytrait. -
Searching for substrings now employs the two-way algorithminstead of doing a naive search. This gives major speedups to a number of methods, including
contains,find,rfind,split.starts_withandends_withare also faster. -
The performance of
PartialEqfor slices is much faster. -
The
Hashtrait offers the default method,hash_slice, which is overridden and optimized by the implementations for scalars. -
The
Hashertrait now has a number of specializedwrite_*methods for primitive types, for efficiency. -
The I/O-specific error type,
std::io::Error, gained a set of methods for accessing the 'inner error', if any:get_ref,get_mut,into_inner. As well, the implementation ofstd::error::Error::causealso delegates to the inner error. -
process::Childgained theidmethod, which returns au32representing the platform-specific process identifier. -
The
connectmethod on slices is deprecated, replaced by the newjoinmethod (note that both of these are on the unstableSliceConcatExttrait, but through the magic of the prelude are available to stable code anyway). -
Performance of SipHash (the default hasher for
HashMap) isbetter for long data. -
The
read_to_endimplementations forStdinandFileare now specialized to use uninitalized buffers for increased performance. -
Lifetime parameters of foreign functions are now resolved properly.
Misc
-
Rust can now, with some coercion, produce programs that run on Windows XP, though XP is not considered a supported platform.
-
Porting Rust on Windows from the GNU toolchain to MSVC continues (1, 2, 3, 4). It is still not recommended for use in 1.3, though should be fully-functional in the 64-bit 1.4 beta.
-
On Fedora-based systems installation will properly configure the dynamic linker.
-
The compiler gained many new extended error descriptions, which can be accessed with the
--explainflag. -
The
dropckpass, which checks that destructors can't access destroyed values, has been rewritten. This fixes some soundness holes, and as such will cause some previously-compiling code to no longer build. -
rustcnow uses LLVM to write archive files where possible. Eventually this will eliminate the compiler's dependency on the ar utility. -
Rust has preliminary support for i686 FreeBSD (it has long supported FreeBSD on x86_64).
-
The
unused_mut,unconditional_recursion,improper_ctypes, andnegate_unsignedlints are more strict. -
If landing pads are disabled (with
-Z no-landing-pads),panic!will kill the process instead of leaking.
更多内容可查看:Rust-1.3。
来自:http://www.oschina.net/news/66299/rust-1-3