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
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
-
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_import
feature gate. This change is believed to break no existing code. -
The behavior of
size_of_val
andalign_of_val
ismore sane for dynamically sized types. Code that relied on the previous behavior is thought to be broken. -
The
dropck
rules, 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_val
andalign_of_val
ismore sane for dynamically sized types. Code that relied on the previous behavior is not known to exist, and suspected to be broken. -
'static
variables may now be recursive. -
ref
bindings choose betweenDeref
andDerefMut
implementations correctly. -
The
dropck
rules, which checks that destructors can't access destroyed values, have been updated to match theRFC.
Libraries
-
The
Duration
API, has been stabilized, as well as thestd::time
module, which presently contains onlyDuration
. -
Box<str>
andBox<[T]>
both implementClone
. -
The owned C string,
CString
, implementsBorrow
and the borrowed C string,CStr
, implementsToOwned
. The two of these allow C strings to be borrowed and cloned in generic code. -
Error
trait objects can be downcast to their concrete typesin many common configurations, using theis
,downcast
,downcast_ref
anddowncast_mut
methods, similarly to theAny
trait. -
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_with
andends_with
are also faster. -
The performance of
PartialEq
for slices is much faster. -
The
Hash
trait offers the default method,hash_slice
, which is overridden and optimized by the implementations for scalars. -
The
Hasher
trait 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::cause
also delegates to the inner error. -
process::Child
gained theid
method, which returns au32
representing the platform-specific process identifier. -
The
connect
method on slices is deprecated, replaced by the newjoin
method (note that both of these are on the unstableSliceConcatExt
trait, 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_end
implementations forStdin
andFile
are 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
--explain
flag. -
The
dropck
pass, 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. -
rustc
now 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_unsigned
lints 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