ArrayList表示可以单独索引的对象的有序集合。基本上,它是数组的替代方法。它还允许动态分配内存,添加,搜索和排序列表中的项目。 ArrayList.Contains(Object)方法确定元素是否存在于ArrayList中。
ArrayList类的属性:
- 可以随时在数组列表集合中添加或删除元素。
- 不能保证对ArrayList进行排序。
- ArrayList的容量是ArrayList可以容纳的元素数。
- 可以使用整数索引访问此集合中的元素。此集合中的索引从零开始。
- 它还允许重复的元素。
- 不支持将多维数组用作ArrayList集合中的元素。
句法:
public virtual bool Contains (object item);
这里, item是要在ArrayList中定位的对象。该值可以为空。
返回值:如果在ArrayList中找到该项目,则此方法将返回True ,否则返回False 。
注意:此方法执行线性搜索,因此,此方法是O(n)运算,其中n是Count。
下面是说明ArrayList.Contains(Object)方法的程序:
范例1:
// C# code to check if an element is
// contained in ArrayList 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");
myList.Add("G");
myList.Add("H");
// To check if the ArrayList Contains element "E"
// If yes, then display it's index, else
// display the message
if (myList.Contains("E"))
Console.WriteLine("Yes, exists at index " + myList.IndexOf("E"));
else
Console.WriteLine("No, doesn't exists");
}
}
输出:
Yes, exists at index 4
范例2:
// C# code to check if an element is
// contained in ArrayList 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("5");
myList.Add("7");
myList.Add("9");
myList.Add("11");
myList.Add("12");
myList.Add("16");
myList.Add("20");
myList.Add("25");
// To check if the ArrayList Contains element "24"
// If yes, then display it's index, else
// display the message
if (myList.Contains("24"))
Console.WriteLine("Yes, exists at index " + myList.IndexOf("24"));
else
Console.WriteLine("No, doesn't exists");
}
}
输出:
No, doesn't exists
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.arraylist.contains?view=netframework-4.7.2