SortedList 类中的 Capacity 属性是什么?
SortedList 类的 Capacity 属性具有 SortedList 的最大大小。
SortedList 的默认容量为 16。
你可以尝试运行以下代码以实现 C# 中 SortedList 类的 Capacity 属性 −
示例
using System; using System.Collections; namespace Demo { class Program { static void Main(string[] args) { SortedList s = new SortedList(); s.Add("S1", "Maths"); s.Add("S2", "Science"); s.Add("S3", "English"); s.Add("S4", "Economics"); Console.WriteLine("Capacity = " + s.Capacity); } } }
输出
Capacity = 16
我们在前面首先向 SortedList 添加元素。
SortedList s = new SortedList(); s.Add("S1", "Maths"); s.Add("S2", "Science"); s.Add("S3", "English"); s.Add("S4", "Economics");
然后,我们找到了容量 −
s.Capacity
广告