123
This commit is contained in:
40
STLPORT/test/regression/mset1.cpp
Normal file
40
STLPORT/test/regression/mset1.cpp
Normal file
@@ -0,0 +1,40 @@
|
||||
// STLport regression testsuite component.
|
||||
// To compile as a separate example, please #define MAIN.
|
||||
|
||||
#include <iostream>
|
||||
#include <set>
|
||||
#include <functional>
|
||||
|
||||
#ifdef MAIN
|
||||
#define mset1_test main
|
||||
#endif
|
||||
|
||||
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
||||
using namespace std;
|
||||
#endif
|
||||
|
||||
typedef multiset<int, less<int> > mset;
|
||||
|
||||
int mset1_test(int, char**)
|
||||
{
|
||||
cout<<"Results of mset1_test:"<<endl;
|
||||
mset s;
|
||||
cout << "count(42) = " << s.count(42) << endl;
|
||||
s.insert(42);
|
||||
cout << "count(42) = " << s.count(42) << endl;
|
||||
s.insert(42);
|
||||
cout << "count(42) = " << s.count(42) << endl;
|
||||
mset::iterator i = s.find(40);
|
||||
if(i == s.end())
|
||||
cout << "40 Not found" << endl;
|
||||
else
|
||||
cout << "Found " << *i << endl;
|
||||
i = s.find(42);
|
||||
if(i == s.end())
|
||||
cout << "Not found" << endl;
|
||||
else
|
||||
cout << "Found " << *i << endl;
|
||||
int count = s.erase(42);
|
||||
cout << "Erased " << count << " instances" << endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user