gpt4 book ai didi

.net - 当 List 调整大小时,增加了多少额外的容量?

转载 作者:行者123 更新时间:2023-12-01 07:21:58 24 4
gpt4 key购买 nike

当一个列表因为没有更多的多余容量而调整大小时,增加了多少容量?只有1?还是增加了容量(使总容量增加一倍)?

最佳答案

容量会翻倍。

这是由以下来源控制的:

// Ensures that the capacity of this list is at least the given minimum
// value. If the currect capacity of the list is less than min, the
// capacity is increased to twice the current capacity or to min,
// whichever is larger.
private void EnsureCapacity(int min) {
if (_items.Length < min) {
int newCapacity = _items.Length == 0? _defaultCapacity : _items.Length * 2;
if (newCapacity < min) newCapacity = min;
Capacity = newCapacity;
}
}
_defaultCapacityconst int等于 4 .

关于.net - 当 List<T> 调整大小时,增加了多少额外的容量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4157218/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com