C# 中的元组类

2023年 8月 29日 20.0k 0

  • Item1 - 获取当前Tuple的值 对象的第一个组件。

  • Item2 - 获取当前 Tuple 的值对象的第二个组件。

  • Item3 - 获取当前 Tuple 对象的第三个组件的值。

  • Item4 - 获取当前 Tuple 对象的第四个组件的值。

  • ul>

    示例

    现在让我们看一个在 C# 中实现 4 元组的示例 -

    using System;
    public class Demo {
    public static void Main(string[] args) {
    Tuple tuple = new Tuple("nathan", "steve", "katie", "tim");
    Console.WriteLine("Value (Item1)= " + tuple.Item1);
    Console.WriteLine("Value (Item2)= " + tuple.Item2);
    Console.WriteLine("Value (Item3)= " + tuple.Item3);
    Console.WriteLine("Value (Item4)= " + tuple.Item4);
    if (tuple.Item1 == "nathan") {
    Console.WriteLine("Exists: Tuple Value = " +tuple.Item1);
    }
    if (tuple.Item2 == "jack") {
    Console.WriteLine("Exists: Tuple Value = " +tuple.Item2);
    }
    if (tuple.Item3 == "katie") {
    Console.WriteLine("Exists: Tuple Value = " +tuple.Item3);
    }
    if (tuple.Item4 == "tom") {
    Console.WriteLine("Exists: Tuple Value = " +tuple.Item4);
    }
    }
    }

    登录后复制

    输出

    这将产生以下输出 -

    Value (Item1)= nathan
    Value (Item2)= steve
    Value (Item3)= katie Value
    Value (Item4)= tom
    Exists: Tuple Value = nathan
    Exists: Tuple Value = katie

    登录后复制

    示例

    现在让我们看另一个在 C# 中实现 4 元组的示例 -

    using System;
    public class Demo {
    public static void Main(string[] args) {
    Tuple tuple = new Tuple(100, 150, 300, 450);
    Console.WriteLine("Value (Item1)= " + tuple.Item1);
    Console.WriteLine("Value (Item2)= " + tuple.Item2);
    Console.WriteLine("Value (Item3)= " + tuple.Item3);
    Console.WriteLine("Value (Item4)= " + tuple.Item4);
    if (tuple.Item1 == 100) {
    Console.WriteLine("Exists: Tuple Item 1 = " +tuple.Item1);
    }
    if (tuple.Item2 == 250) {
    Console.WriteLine("Exists: Tuple Item 2 = " +tuple.Item2);
    }
    if (tuple.Item3 == 270) {
    Console.WriteLine("Exists: Tuple Item 3 = " +tuple.Item3);
    }
    if (tuple.Item4 == 300) {
    Console.WriteLine("Exists: Tuple Item 4 = " +tuple.Item4);
    }
    }
    }

    登录后复制

    输出

    这将产生以下输出 -

    Value (Item1)= 100
    Value (Item2)= 150
    Value (Item3)= 300
    Value (Item4)= 450
    Exists: Tuple Item 1 = 100

    登录后复制

    以上就是C# 中的元组类的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论