次の方法で共有


set::size (STL Samples)

Visual C++ で 設定 :: サイズ の標準テンプレート ライブラリ関数を使用する方法に (STL) ついて説明します。

template<class _K, class _Pr, class _A>
   class set 
   {
      public:
      // Function 1:
      size_type size() const;
   }

解説

[!メモ]

プロトタイプのクラスやパラメーター名はヘッダー ファイルのバージョンと一致しない。ただし読みやすさが向上するように変更されました。

サイズ の関数は被制御シーケンスの要素数を確認するために使用されます。

使用例

// SetSize.cpp
// compile with: /EHsc
//
//      Illustrates how to use the size function to determine how
//      many elements are in the controlled sequence.
//
// Functions:
//
//    size         Returns the number of elements in the controlled
//                 sequence.
//
//////////////////////////////////////////////////////////////////////

#pragma warning(disable:4786)
#include <set>
#include <iostream>

using namespace std ;

typedef set<int> SET_INT;

int main() {
  SET_INT s1;

  cout << "s1.size() returned ";
  cout << s1.size() << endl;  // 0

  cout << "s1.insert(5)" << endl;
  s1.insert(5);
  cout << "s1.insert(8)" << endl;
  s1.insert(8);
  cout << "s1.insert(12)" << endl;
  s1.insert(12);

  cout << "s1.size() returned ";
  cout << s1.size() << endl; // 3
}

出力

s1.size() returned 0
s1.insert(5)
s1.insert(8)
s1.insert(12)
s1.size() returned 3

必要条件

ヘッダー : <set>

参照

概念

標準テンプレート ライブラリのサンプル