Vec
Vec
是可調整大小的標準堆積配置緩衝區:
Vec
會實作 Deref<Target = [T]>
。也就是說,您可以在 Vec
上呼叫切片方法。
Speaker Notes
This slide should take about 10 minutes.
Vec
is a type of collection, along withString
andHashMap
. The data it contains is stored on the heap. This means the amount of data doesn’t need to be known at compile time. It can grow or shrink at runtime.- 請留意
Vec<T>
也能做為泛型型別,但您不必明確指定T
。和往常的 Rust 型別推論一樣,系統會在第一次push
呼叫期間建立T
。 vec![...]
是用於取代Vec::new()
的標準巨集,且支援在向量中加入初始元素。- 如要為向量建立索引,請使用
[
]
,但如果超出範圍會引發恐慌。或者,使用get
則可傳回Option
。pop
函式會移除最後一個元素。 - 我們會在第 3 天談到切片。現階段,學生只需知道
Vec
型別的值也能存取所有記錄下來的切片方法。