multiset :: size()是C++ STL中的内置函数,它返回多集容器中的元素数。
句法:
multiset_name.size()
参数:该函数不接受任何参数。
返回值:该函数返回多集容器中的元素数。
下面的程序说明了上述函数:
程序1:
// CPP program to demonstrate the
// multiset::size() function
#include
using namespace std;
int main()
{
multiset 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
using namespace std;
int main()
{
multiset 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的所有功能
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。