📌  相关文章
📜  C#|检查ArrayList是否具有固定大小

📅  最后修改于: 2021-05-29 15:41:58             🧑  作者: Mango

ArrayList表示可以单独索引的对象的有序集合。基本上,它是数组的替代方法。它还允许动态分配内存,添加,搜索和排序列表中的项目。 ArrayList.IsFixedSize属性用于检查ArrayList是否具有固定大小。

特性:

  • 可以随时在数组列表集合中添加或删除元素。
  • 不能保证对ArrayList进行排序。
  • ArrayList的容量是ArrayList可以容纳的元素数。
  • 可以使用整数索引访问此集合中的元素。此集合中的索引从零开始。
  • 它还允许重复的元素。
  • 不支持将多维数组用作ArrayList集合中的元素。

句法:

public virtual bool IsFixedSize { get; }

返回值:如果ArrayList具有固定大小,则此方法返回True ,否则返回False 。默认值为False

下面的程序说明了ArrayList.IsFixedSize属性的用法:

范例1:

// C# code to check if the ArrayList
// has fixed size or not
using System;
using System.Collections;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating an ArrayList
        ArrayList myList = new ArrayList();
  
        // Adding elements to ArrayList
        myList.Add("A");
        myList.Add("B");
        myList.Add("C");
        myList.Add("D");
        myList.Add("E");
        myList.Add("F");
  
        // To check if the ArrayList has fixed size or not
        Console.WriteLine(myList.IsFixedSize);
    }
}
输出:
False

范例2:

// C# code to check if the ArrayList 
// has fixed size or not 
using System; 
using System.Collections; 
using System.Collections.Generic; 
  
class GFG { 
  
    // Driver code 
    public static void Main() 
    { 
  
        // Creating an ArrayList 
        ArrayList myList = new ArrayList(); 
  
        // Adding elements to ArrayList 
        myList.Add("1"); 
        myList.Add("2"); 
        myList.Add("3"); 
        myList.Add("4"); 
        myList.Add("5"); 
        myList.Add("6"); 
  
        // To check if the ArrayList 
        // has fixed size or not
        // it will return false
        Console.WriteLine(myList.IsFixedSize); 
        
        
        // Create a fixed-size wrapper
        // around the ArrayList
        ArrayList myListfixed = ArrayList.FixedSize(myList);
  
        // To check if the ArrayList
        // has fixed size or not
        // it will return true
        Console.WriteLine(myListfixed.IsFixedSize); 
        
        
    } 
} 

输出:

False
True

笔记:

  • 具有固定大小的集合不允许在创建集合后添加或删除元素,但是可以修改现有元素。
  • 检索此属性的值是O(1)操作。

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.arraylist.isfixedsize?view=netframework-4.7.2