C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のリスト内の要素の総数を数えますか?


リスト内の要素の総数を数えるためのコードは次のとおりです-

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<String> list = new List<String>();
      list.Add("One");
      list.Add("Two");
      list.Add("Three");
      list.Add("Four");
      list.Add("Five");
      Console.WriteLine("Elements in List1...");
      foreach (string res in list) {
         Console.WriteLine(res);
      }
      Console.WriteLine("\nCount of elements in list = "+list.Count);
      list.Clear();
      Console.WriteLine("\nCount of elements in list (updated) = "+list.Count);
   }
}

出力

これにより、次の出力が生成されます-

Elements in List1...
One
Two
Three
Four
Five
Count of elements in list = 5
Count of elements in list (updated) = 0

別の例を見てみましょう-

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<String> list = new List<String>();
      list.Add("100");
      list.Add("200");
      list.Add("300");
      list.Add("400");
      list.Add("500");
      Console.WriteLine("Count of elements in the list = "+list.Count);  
      Console.WriteLine("Enumerator iterates through the list elements...");
      List<string>.Enumerator demoEnum = list.GetEnumerator();
      while (demoEnum.MoveNext()) {
         string res = demoEnum.Current;
         Console.WriteLine(res);
      }
      list.Add("600");
      list.Add("700");
      Console.WriteLine("Count of elements in the list (updated) = "+list.Count);
   }
}

出力

これにより、次の出力が生成されます-

Count of elements in the list = 5
Enumerator iterates through the list elements...
100
200
300
400
500
Count of elements in the list (updated) = 7

  1. C ++を使用してOpenCVのフレームの総数をカウントするにはどうすればよいですか?

    OpenCVでフレームの総数を計算する方法を学びます。 OpenCVを使用すると、ビデオのフレームの総数をカウントして表示するのが基本です。ただし、リアルタイムビデオフレームの総数をカウントできないことに注意する必要があります。リアルタイム動画には特定のフレーム数がないためです。 次のプログラムは、合計フレーム数をカウントし、コンソールウィンドウに表示します。 例 #include<opencv2/opencv.hpp> #include<iostream> using namespace std; using namespace cv; int main() { &

  2. Pythonリスト内のオブジェクトの合計発生数をカウントするにはどうすればよいですか?

    list class count関数を使用して、Pythonリスト内のオブジェクトの出現回数をカウントできます。これは、1つのオブジェクトのみのカウントが必要な場合にのみ使用してください。呼び出されたリストで、渡したオブジェクトの総数を検索します。 例 >>> ["red", "blue", "red", "red", "blue"].count("red") 3 リスト内のすべてのオブジェクトの数を取得する場合は、コレクションからCounterを使用する