codecamp

相关学术研究

相关学术研究

如下是部分对 Rust 有影响的学术论文。通过阅读它们可以更好的理解 Rust 的背景,甚至迸发出更精彩的想法。

类型系统

并发性

其他

Crash-only software
Composing High-Performance Memory Allocators
Reconsidering Custom Memory Allocation

关于 Rust 的论文

GPU programming in Rust
Parallel closures: a new twist on an old idea - 提到的不完全是 rust,但是是由 nmatsakis 提出的。

词汇表
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }