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
를 꼭 지정해줄 필요는 없습니다. 이 경우, 러스트 타입 추론이 벡터에 처음push
하는 데이터로T
를 알 수 있었습니다.vec![...]
는Vec::new()
대신 쓸 수 있는 표준 매크로로서, 초기 데이터를 추가한 벡터를 생성할 수 있습니다.- 벡터는
[
]
를 사용하여 인덱스로 접근할 수 있습니다. 하지만 범위를 벗어나면 패닉이 발생합니다. 대신get
을 사용하면Option
을 반환합니다.pop
함수는 마지막 요소를 제거합니다. - Slices are covered on day 3. For now, students only need to know that a value of type
Vec
gives access to all of the documented slice methods, too.