C#中的Hashtable集合是根据键的哈希码组织的键值对的集合。哈希码是使用哈希码函数计算的。
哈希表中的每个元素都是具有唯一键的键值对。键也必须是非空的。值可以为空和重复。
在本文中,我们将讨论如何检查哈希表集合是否为空。
C#中实现哈希表集合的类是Hashtable类。我们可以通过计算哈希表中存在的元素数量来检查哈希表集合是否为空。
为此,我们可以使用 Hashtable 类的“Count”属性,该属性返回哈希表中的元素数量。
因此,如果 Count 属性返回 0,则表示哈希表为空,如果返回大于 0 的值,则表示哈希表有元素。
我们首先了解一下Hashtable类的Count属性的原型。
public virtual int Count { get; }
返回值 - Int32 类型的属性值
描述 - 获取哈希表中包含的键值对的数量。
System.Collections
从上面对 Count 属性的描述可以看出,我们可以使用该属性获取哈希表集合中键值对的数量。
现在让我们看一些编程示例,它们将帮助我们理解这个 Count 属性。
让我们看看第一个程序如何检查哈希表是否为空。程序如下。
using System; using System.Collections; class Program { public static void Main() { // Create a Hashtable Hashtable myTable = new Hashtable(); //get the count of items in hashtable int mySize = myTable.Count; if(mySize == 0) Console.WriteLine("Hashtable is empty"); else Console.WriteLine("The hashtable is not empty. It has {0} item(s)", mySize); } }
在这个程序中,我们创建了一个 Hashtable 对象,但没有向其中添加任何元素。然后我们使用 Count 属性检索哈希表中存在的元素的计数。最后,计算 Count 属性返回的值,并相应地显示消息,指示哈希表是否为空。
程序生成以下输出。
Hashtable is empty
由于哈希表中没有元素,因此显示消息:哈希表为空。
现在让我们向上面程序中的哈希表添加一些元素。现在我们使用“Add()”方法将两个元素添加到哈希表中。
程序如下所示。
using System; using System.Collections; class Program { public static void Main() { // Create a Hashtable Hashtable myTable = new Hashtable(); myTable.Add("1", "One"); myTable.Add("2", "Two"); //get the count of items in hashtable int mySize = myTable.Count; if(mySize == 0) Console.WriteLine("Hashtable is empty"); else Console.WriteLine("The hashtable is not empty. It has {0} item(s).", mySize); } }
这里我们向哈希表添加了两个元素。现在输出更改为如下所示。
The hashtable is not empty. It has 2 item(s)
正如我们所见,Count 属性返回哈希表中的元素数量。
现在让我们看另一个例子以更好地理解。
程序如下。
using System; using System.Collections; class Program { public static void Main() { // Create a Hashtable Hashtable langCode = new Hashtable(); langCode.Add("Perl", ""); //get the count of items in hashtable int hashtabSize = langCode.Count; if(hashtabSize == 0) Console.WriteLine("Hashtable is empty"); else Console.WriteLine("Hashtable is not empty. It has {0} item(s)", hashtabSize); } }
这里我们有一个 langCode 哈希表,其中有一个元素。我们再次使用 Count 属性来返回哈希表中的元素数量。该程序的输出如下所示。
Hashtable is not empty. It has 1 item(s)
由于哈希表中有一个元素,因此会适当地给出消息。现在让我们删除哈希表中存在的元素。为此,我们只需注释掉向哈希表添加元素的行即可。
程序如下。
using System; using System.Collections; class Program { public static void Main() { // Create a Hashtable Hashtable langCode = new Hashtable(); //langCode.Add("Perl", ""); //get the count of items in hashtable int hashtabSize = langCode.Count; if(hashtabSize == 0) Console.WriteLine("Hashtable is empty"); else Console.WriteLine("Hashtable is not empty. It has {0} item(s)", hashtabSize); } }
现在哈希表中没有任何元素。因此,当我们在此哈希表上使用 Count 属性时,它返回零。因此输出显示哈希表为空。
Hashtable is empty
因此,由于 Hashtable 类中没有直接方法来检查哈希表是否为空,因此我们使用 Hashtable 类的 Count 属性来获取哈希表中元素的数量。如果 Count 返回 0,则我们得出哈希表为空的结论。如果它返回一个非零值,则意味着哈希表中有元素。
以上是检查 HashTable 集合是否为空的 C# 程序的详细内容。更多信息请关注PHP中文网其他相关文章!