首页 > 代码库 > C# 组元Tuple
C# 组元Tuple
组元是C# 4.0引入的一个新特性.需要基于.NET Framework 4.0或者更高版本。组元使用泛型来简化一个类的定义。组元多用于
方法的返回值,如果一个函数返回多个类型,这样就不在用out\ref等输出参数了,可以直接定义一个Tuple类型就可以了。
1.0 简单使用
//一个成员 Tuple<int> test = new Tuple<int>(1); Console.WriteLine(test.Item1); //两个成员 Tuple<int, double> test1 = new Tuple<int, double>(2, 2.3); Console.WriteLine(test1.Item1 + test1.Item2);
2.0 嵌套使用
Tuple最多支持8个成员,如果多于8个就需要进行嵌套。
注意第8个成员很特殊,第8个成员必须嵌套定义成Tuple类型
//非8个元素 Tuple<int, Tuple<string>> test2 = new Tuple<int, Tuple<string>>(3, new Tuple<string>("Nesting")); Console.WriteLine(test2.Item1); Console.WriteLine(test2.Item2); //8个元素 Tuple<int, long, float, double, short, byte, char, Tuple<int>> test3 = new Tuple<int, long, float, double, short, byte, char, Tuple<int>>(1, 2, 3.0f, 4, 5, 6, 'h', new Tuple<int>(8)); Console.WriteLine(test3.Item1 + test3.Rest.Item1);
C# 组元Tuple
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。