C# 9使用foreach扩展的示例详解

作者:Newbe36524 时间:2023-01-27 08:35:56 

在 C# 9 中,foreach 循环可以使用扩展方法。在本文中,我们将通过例子回顾 C# 9 中如何扩展 foreach 循环。

代码演示

下面是一个对树形结构进行深度优先遍历的示例代码:

using System;
using System.Collections.Generic;

namespace Example
{
   class TreeNode
   {
       public int Value { get; set; }
       public List<TreeNode> Children { get; set; }

public TreeNode(int value)
       {
           Value = value;
           Children = new List<TreeNode>();
       }
   }

static class TreeExtensions
   {
       public static IEnumerable<TreeNode> DepthFirst(this TreeNode root)
       {
           yield return root;
           foreach (var child in root.Children.SelectMany(DepthFirst))
           {
               yield return child;
           }
       }
   }

class Program
   {
       static void Main(string[] args)
       {
           var root = new TreeNode(1);
           root.Children.Add(new TreeNode(2));
           root.Children.Add(new TreeNode(3));
           root.Children[0].Children.Add(new TreeNode(4));
           root.Children[0].Children.Add(new TreeNode(5));

foreach (var node in root.DepthFirst())
           {
               Console.WriteLine(node.Value);
           }
           // Outputs: 1 2 4 5 3
       }
   }
}

在这个示例代码中,我们在 TreeNode 类中定义了一个值属性和一个存储子节点的列表属性。我们还在 TreeExtensions 类中定义了一个 DepthFirst 扩展方法,该方法使用 yield return 语句来返回树形结构的深度优先遍历结果。

在 Main 方法中,我们创建了一个树形结构,然后使用 foreach 循环来遍历树形结构的深度优先遍历结果。

之所以使用扩展方法往往是因为,我们可以在不修改 TreeNode 类的情况下,为 TreeNode 类添加新的功能。

那么接下来我们希望在 C# 9 中默认为 TreeNode 类添加 DepthFirst 行为,这样我们就可以直接使用 foreach 循环来遍历树形结构的深度优先遍历结果了。

C# 9 中的 foreach 扩展

在 C# 9 中,我们可以使用 foreach 扩展来实现上面的需求。我们只需要在 TreeNode 类中添加一个 GetEnumerator 方法,该方法返回一个实现了 IEnumerable 接口的对象即可。

static class TreeExtensions
{
   public static IEnumerable<TreeNode> DepthFirst(this TreeNode root)
   {
       yield return root;
       foreach (var child in root.Children.SelectMany(DepthFirst))
       {
           yield return child;
       }
   }

public static IEnumerator<TreeNode> GetEnumerator(this TreeNode root)
   {
       return root.DepthFirst().GetEnumerator();
   }
}

在上面的代码中,我们在 TreeNode 类中添加了一个 GetEnumerator 方法,该方法返回一个实现了 IEnumerable 接口的对象。这个对象就是我们在 DepthFirst 方法中使用 yield return 语句返回的结果。

现在我们可以直接使用 foreach 循环来遍历树形结构的深度优先遍历结果了。

foreach (var node in root)
{
   Console.WriteLine(node.Value);
}

来源:https://www.cnblogs.com/newbe36524/p/17018770.html

标签:C#9,foreach,扩展
0
投稿

猜你喜欢

  • Java详细讲解堆排序与时间复杂度的概念

    2023-10-20 02:00:11
  • Java定时器Timer使用方法详解

    2023-08-25 17:32:20
  • Android实现打开各种文件的intent方法小结

    2022-03-12 18:39:20
  • Java源码解析之平衡二叉树

    2023-11-29 11:16:40
  • Spark网站日志过滤分析实例讲解

    2021-06-08 12:59:24
  • Java 超详细讲解核心类Spring JdbcTemplate

    2021-08-05 15:30:57
  • Java 1.8使用数组实现循环队列

    2022-02-11 04:00:10
  • Java异常处理之try...catch...语句的使用进阶

    2022-03-16 03:06:09
  • Java 类加载机制详细介绍

    2023-12-19 13:55:59
  • mybatis输出SQL格式化方式

    2021-06-18 18:19:45
  • Flutter 日历组件简单实现

    2023-10-21 11:04:35
  • java如何从不规则的字符串中截取出日期

    2022-05-28 02:33:58
  • c#唯一值渲染实例代码

    2023-09-06 06:54:16
  • Java Set集合的遍历及实现类的比较

    2023-11-05 16:08:10
  • Spring深入刨析声明式事务注解的源码

    2023-10-23 09:41:48
  • Eclipse设置断点调试的方法

    2022-11-05 07:45:56
  • DirectInfo.GetFiles返回数组的默认排序示例

    2022-11-15 14:45:02
  • 详解Android获取系统内核版本的方法与实现代码

    2023-11-25 14:51:59
  • SpringBoot2 实现JPA分页和排序分页的案例

    2022-02-23 13:26:08
  • springboot 中整合mybatis多数据源不使用JPA

    2023-03-01 08:43:02
  • asp之家 软件编程 m.aspxhome.com