The contents of a Vec<T>
is, regardless of T
, a single heap allocation, of self.capacity() * std::mem::size_of::<T>()
bytes. (Vec
overallocates—that’s the whole point of Vec<T>
instead of Box<[T]>
—so it’s the capacity, not the length, that matter in this calculation.) The actual Vec<T>
itself takes three words (24 bytes on a 64-bit machine).
[f32; 5]
is just a chunk of memory containing five 32-bit floating-point numbers, with no indirection; this comes to twenty bytes (hence std::mem::size_of::<[f32; 5]>() == 20
).
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…