當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ multiset size()用法及代碼示例


multiset::size()是C++ STL中的內置函數,該函數返回多集容器中的元素數。

用法:

multiset_name.size()

參數:該函數不接受任何參數。


返回值:該函數返回多重集容器中的元素數。

以下示例程序旨在說明上述函數:

程序1:

// CPP program to demonstrate the 
// multiset::size() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
  
    multiset<int> s; 
  
    // Function to insert elements 
    // in the multiset container 
    s.insert(10); 
    s.insert(13); 
  
    cout << "The size of multiset:" << s.size(); 
    s.insert(13); 
    s.insert(25); 
  
    cout << "\nThe size of multiset:" << s.size(); 
    s.insert(24); 
  
    cout << "\nThe size of multiset:" << s.size(); 
    return 0; 
}
輸出:
The size of multiset:2
The size of multiset:4
The size of multiset:5

程序2:

// CPP program to demonstrate the 
// multiset::size() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
  
    multiset<int> s; 
  
    cout << "The size of multiset:" << s.size(); 
    s.insert(2); 
    s.insert(3); 
  
    cout << "\nThe size of multiset:" << s.size(); 
    s.insert(4); 
  
    cout << "\nThe size of multiset:" << s.size(); 
    return 0; 
}
輸出:
The size of multiset:0
The size of multiset:2
The size of multiset:3

std::multiset的所有函數



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 multiset size() in C++ STL with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。