内容简介:Rust 1.18 发布,Mozilla 的编程语言
Rust 1.18 发布了。Rust 是一门由 Mozilla 开发的专注于安全性,速度和并发性的系统编程语言。
Rust 1.18 增加了许多新特性,运行起来像这样:
#![windows_subsystem(console)] #![windows_subsystem(windows)]
Rust的元组,枚举变量字段和结构体(没有#[repr])总是有一个未定义的布局。 我们已经开始自动重新排序,结构如下:
struct Suboptimal(u8, u16, u8);
新 API
-
Child::try_wait
is a non-blocking form ofChild::wait
. -
HashMap::retain
andHashSet::retain
bring theretain
APIVec<T>
has to these two hash data structures. -
PeekMut::pop
lets you pop the top element from aBinaryHeap<T>
after you’ve already peeked at it without needing to reorder the heap a second time. -
TcpStream::peek
,UdpSocket::peek
,UdpSocket::peek_from
let you peek at a stream or socket.
下载地址:
>>>【评论有礼】6月6日-30日评论每日更新的“新闻资讯和软件更新资讯”,评论点赞数超过 20 的可登上每周更新的“源资讯”和“软件周刊”两大栏目,点赞数超过 50 的还将获得 5 活跃积分奖励和开源中国定制好礼。详情
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- Scala面向对象编程之Trait高级编程技术实践-JVM生态编程语言实战
- 逻辑式编程语言极简实现(使用C#) - 1. 逻辑式编程语言介绍
- 我的“第二”编程语言
- 编程语言特性:函数
- 编程语言的巅峰
- 各种编程语言对比
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Don't Make Me Think
Steve Krug / New Riders Press / 18 August, 2005 / $35.00
Five years and more than 100,000 copies after it was first published, it's hard to imagine anyone working in Web design who hasn't read Steve Krug's "instant classic" on Web usability, but people are ......一起来看看 《Don't Make Me Think》 这本书的介绍吧!