C# 中的 LinkedList Clear() 方法


使用 Clear() 方法可以清除 LinkedList。此操作会移除 LinkedList 中的所有节点。

假设我们的 LinkedList 如下所示 −

int [] num = {30, 65, 80, 95, 110, 135};
LinkedList<int> list = new LinkedList<int>(num);

清除 LinkedList。

list.Clear();

示例

 实际演示

using System;
using System.Collections.Generic;
class Demo {
   static void Main() {
      int [] num = {30, 65, 80, 95, 110, 135};
      LinkedList<int> list = new LinkedList<int>(num);
      foreach (var n in list) {
         Console.WriteLine(n);
      }
      // clear
      list.Clear();
      Console.WriteLine("No node in the LinkedList now...");
      foreach (var n in list) {
         Console.WriteLine(n);
      }
   }
}

输出

30
65
80
95
110
135
No node in the LinkedList now...

更新时间:2020 年 6 月 23 日

582 次浏览

开启您的职业生涯

完成课程以取得认证

开始
广告