C# |检查排序列表是否是只读的
原文:https://www . geesforgeks . org/c-sharp-check-if-a-sorted list-is-read-only/
SortedList 类是按键排序的(键,值)对的集合。这些对可以通过键和以及索引(从零开始的索引)来访问。这属于体系。集合命名空间。 排序列表。IsReadOnly 属性用于获取一个值,该值指示 SortedList 对象是否为只读。
排序列表的属性:
- 在内部,SortedList 的对象维护两个数组。第一个数组用于存储列表中的元素,即键,第二个数组用于存储相关的值。
- 键不能为空,但值可以为空。
- As SortedList 使用了排序,这使得它比 Hashtable 慢。
- 排序列表的容量可以通过重新分配来动态增加。
- 排序列表中的键不能重复,但值可以重复。
- 排序列表可以使用 IComparer(升序或降序)根据关键字进行排序。
语法:
public virtual bool IsReadOnly { get; }
返回值:如果 SortedList 对象为只读,则该属性返回 True ,否则返回 False 。默认为 假 。
示例:
// C# code to check if a
// SortedList is read-only
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating an SortedList
SortedList mySortedList = new SortedList();
// Adding elements to SortedList
mySortedList.Add("a", "A");
mySortedList.Add("b", "B");
mySortedList.Add("c", "C");
mySortedList.Add("d", "D");
// Checking if the created
// SortedList is read-only or not
Console.WriteLine(mySortedList.IsReadOnly);
}
}
输出:
False
注:
- 只读集合在创建后不允许添加、移除或修改元素。
- 检索该属性的值是一个 O(1)操作。
参考:
版权属于:月萌API www.moonapi.com,转载请注明出处