📅  最后修改于: 2023-12-03 15:00:16.973000             🧑  作者: Mango
Queue.Contains()是C#中Queue类提供的一个方法。它用于判断一个元素是否在队列中存在。如果存在,则返回true
;如果不存在,则返回false
。
public bool Contains(T item);
true
。false
。using System;
using System.Collections;
class Program
{
static void Main(string[] args)
{
Queue myQueue = new Queue();
myQueue.Enqueue("apple");
myQueue.Enqueue("banana");
myQueue.Enqueue("cherry");
Console.WriteLine(myQueue.Contains("apple")); // 预期结果为:True
Console.WriteLine(myQueue.Contains("pear")); // 预期结果为:False
}
}
Queue
实例myQueue
。myQueue
中添加了三个元素。myQueue.Contains
方法两次,分别传入了字符串"apple"
和"pear"
作为参数。myQueue.Contains
方法的返回值。输出结果应该为:
True
False
Queue.Contains
方法可以用于判断一个元素是否存在于队列中。它的使用十分简单,只需要传入要查找的元素即可。该方法在C# 2.0中引入,是Queue类中的一个常用方法。