当前位置: 首页 > 编程笔记 >

如何在C#中创建Hashtable的浅表副本?

水睿
2023-03-14
本文向大家介绍如何在C#中创建Hashtable的浅表副本?,包括了如何在C#中创建Hashtable的浅表副本?的使用技巧和注意事项,需要的朋友参考一下

要创建Hashtable的浅表副本,代码如下-

示例

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Hashtable hash = new Hashtable();
      hash.Add("1", "AB");
      hash.Add("2", "BC");
      hash.Add("3", "DE");
      hash.Add("4", "EF");
      hash.Add("5", "GH");
      hash.Add("6", "IJ");
      hash.Add("7", "KL");
      hash.Add("8", "MN");
      hash.Add("9", "OP");
      hash.Add("10", "QR");
      Console.WriteLine("Hashtable elements...");
      foreach(DictionaryEntry d in hash) {
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
      Hashtable hash2 = (Hashtable)hash.Clone();
      Console.WriteLine("\nHashtable elements...cloned");
      foreach(DictionaryEntry d in hash2) {
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
   }
}

输出结果

这将产生以下输出-

Hashtable elements...
Key = 10, Value = QR
Key = 1, Value = AB
Key = 2, Value = BC
Key = 3, Value = DE
Key = 4, Value = EF
Key = 5, Value = GH
Key = 6, Value = IJ
Key = 7, Value = KL
Key = 8, Value = MN
Key = 9, Value = OP

Hashtable elements...cloned
Key = 10, Value = QR
Key = 1, Value = AB
Key = 2, Value = BC
Key = 3, Value = DE
Key = 4, Value = EF
Key = 5, Value = GH
Key = 6, Value = IJ
Key = 7, Value = KL
Key = 8, Value = MN
Key = 9, Value = OP

示例

让我们看另一个例子-

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Hashtable hash = new Hashtable();
      hash.Add("A", "Electronics");
      hash.Add("B", "Appliances");
      hash.Add("C", "Pet Supplies");
      hash.Add("D", "Books");
      hash.Add("E", "Toys");
      hash.Add("F", "Footwear");
      hash.Add("G", "Clothing");
      Console.WriteLine("Hashtable elements...");
      foreach(DictionaryEntry d in hash) {
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
      ICollection col = hash.Keys;
      Console.WriteLine("\nDisplaying only the keys...");
      foreach(string str in col)
      Console.WriteLine(str + ": " + hash[str]);
      Hashtable hash2 = (Hashtable)hash.Clone();
      Console.WriteLine("\nHashtable elements...cloned");
      foreach(DictionaryEntry d in hash2) {
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
   }
}

输出结果

这将产生以下输出-

Hashtable elements...
Key = G, Value = Clothing
Key = A, Value = Electronics
Key = B, Value = Appliances
Key = C, Value = Pet Supplies
Key = D, Value = Books
Key = E, Value = Toys
Key = F, Value = Footwear

Displaying only the keys...
G: Clothing
A: Electronics
B: Appliances
C: Pet Supplies
D: Books
E: Toys
F: Footwear

Hashtable elements...cloned
Key = G, Value = Clothing
Key = A, Value = Electronics
Key = B, Value = Appliances
Key = C, Value = Pet Supplies
Key = D, Value = Books
Key = E, Value = Toys
Key = F, Value = Footwear
 类似资料:
  • 我想列个这样的单子。请帮帮我.谢了。

  • 我正在尝试创建列表列表,其中大列表表示纸张包含小列表表示问题的集合,问题列表由问题字符串及其ID组成。在这里我的代码: 现在我没有错误地制作问题列表,但是当我尝试创建更大的列表时,Visual Studio无法将可变问题类型识别为类型,哪里错了?

  • 问题内容: 我们知道“ final”关键字在Java中的用途。在将变量声明为final时,我们必须初始化变量。例如“ final int a = 10;” 我们无法更改“ a”的值。但是,如果我们选择HashTable,甚至可以将HashTable声明为final,也可以添加一些值。 例:: 现在,我将MYHASH HashTable声明为final。如果我尝试向此添加更多元素,则它会被接受。 现

  • 问题内容: 看来在PHP对象中是通过引用传递的。甚至赋值运算符似乎也没有创建对象的副本。 这是一个简单的人为证明: 在这两种印刷情况下,我都会得到“之后”的印象 那么,如何通过值而不是通过引用将 $ a 传递给 set_b() ? 问题答案: 在PHP 5+中,对象是通过引用传递的。在PHP 4中,它们是按值传递的(这就是为什么它具有运行时按引用传递(已弃用)的原因)。 您可以在PHP5中使用“克

  • 本文向大家介绍如何在C#中创建StringBuilder?,包括了如何在C#中创建StringBuilder?的使用技巧和注意事项,需要的朋友参考一下 要在C#中创建StringBuilder,代码如下- 示例 输出结果 这将产生以下输出- 示例 让我们看另一个例子- 输出结果 这将产生以下输出-

  • 熊猫的常见操作是 但是,如何在SQL中执行此操作?是否有标准的功能或方法来执行