mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-06 11:48:03 +08:00
与原文不同,疑似翻译不准确
原文地址:https://github.com/rust-lang/book/blob/main/src/ch03-02-data-types.md 原文:`An array is a single chunk of memory of a known, fixed size that can be allocated on the stack.` 把 `stack` 翻译成了 `堆栈` 应该翻译成 `栈` 这样更严谨一些
This commit is contained in:
parent
98be6b0a5b
commit
67bfef6fba
@ -197,7 +197,7 @@ let a = [3; 5];
|
||||
|
||||
##### 访问数组元素
|
||||
|
||||
数组是可以在堆栈上分配的已知固定大小的单个内存块。可以使用索引来访问数组的元素,像这样:
|
||||
数组是可以在栈(stack)上分配的已知固定大小的单个内存块。可以使用索引来访问数组的元素,像这样:
|
||||
|
||||
<span class="filename">文件名: src/main.rs</span>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user