C#:Dictionary类型数组

在C#中,如果你想将字典(Dictionary)作为数组的一个元素。

方法1:直接声明字典数组

例如:

Dictionary<int, string>[] dictArray = new Dictionary<int, string>[3];

// 初始化字典数组的每个元素

for (int i = 0; i < dictArray.Length; i++)

{

dictArray[i] = new Dictionary<int, string>();

}

// 示例:向第一个字典添加元素

dictArray[0].Add(1, "One");

dictArray[0].Add(2, "Two");

方法2:使用List<Dictionary<TKey, TValue>>

如果你不确定数组的大小,或者想要更灵活地管理字典集合,可以使用List<Dictionary<TKey, TValue>>:

List<Dictionary<int, string>> dictList = new List<Dictionary<int, string>>();

// 添加一个新字典到列表中

dictList.Add(new Dictionary<int, string>());

dictList.Add(new Dictionary<int, string>());

// 示例:向第一个字典添加元素

dictList[0].Add(1, "One");

dictList[0].Add(2, "Two");

方法3:在数组中使用匿名类型或自定义类型封装字典

如果需要在数组中存储不同类型的对象,包括字典,你可以使用匿名类型或自定义类来封装字典:

// 使用匿名类型

var array = new {

Dict1 = new Dictionary<int, string> { { 1, "One" }, { 2, "Two" } },

Dict2 = new Dictionary<int, string> { { 3, "Three" }, { 4, "Four" } }

};

// 或者使用自定义类型

public class DictWrapper

{

public Dictionary<int, string> Dict { get; set; }

}

DictWrapper[] dictArray = new DictWrapper[2];

dictArray[0] = new DictWrapper { Dict = new Dictionary<int, string> { { 1, "One" }, { 2, "Two" } } };

dictArray[1] = new DictWrapper { Dict = new Dictionary<int, string> { { 3, "Three" }, { 4, "Four" } } };

方法4:使用元组(适用于简单的键值对)

对于简单的键值对集合,你可以使用元组(Tuple)或值元组(ValueTuple):

(Dictionary<int, string>, Dictionary<int, string>)[] dictTuples = new (Dictionary<int, string>, Dictionary<int, string>)[2];

dictTuples[0] = (new Dictionary<int, string> { { 1, "One" }, { 2, "Two" } }, null); // 示例:第一个位置存储一个字典,第二个为null或另一个字典等。

dictTuples[1] = (new Dictionary<int, string> { { 3, "Three" }, { 4, "Four" } }, null); // 同上。

相关推荐
悟能不能悟9 小时前
java map判断是否有key,get(key)+x,否则put(key,x)的新写法
java·开发语言
webbodys9 小时前
Python文件操作与异常处理:构建健壮的应用程序
java·服务器·python
石工记9 小时前
对称加密 vs 非对称加密图解详解
java·网络安全
blurblurblun9 小时前
Go语言特性
开发语言·后端·golang
Y.O.U..9 小时前
Go 语言 IO 基石:Reader 与 Writer 接口的 “最小设计” 与实战落地
开发语言·后端·golang
不急不躁12310 小时前
Android16 给应用默认获取权限
android·java
CoderCodingNo10 小时前
【GESP】C++五级真题(数论考点) luogu-B3871 [GESP202309 五级] 因数分解
开发语言·c++
C雨后彩虹10 小时前
5G网络建设
java·数据结构·算法·华为·面试
froginwe1110 小时前
NumPy 字符串函数
开发语言
wildlily842710 小时前
C++ Primer 第5版章节题 第九章
开发语言·c++