123
This commit is contained in:
28
STLPORT/test/regression/copy3.cpp
Normal file
28
STLPORT/test/regression/copy3.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
// STLport regression testsuite component.
|
||||
// To compile as a separate example, please #define MAIN.
|
||||
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
|
||||
#ifdef MAIN
|
||||
#define copy3_test main
|
||||
#endif
|
||||
|
||||
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
||||
using namespace std;
|
||||
#endif
|
||||
int copy3_test(int, char**)
|
||||
{
|
||||
cout<<"Results of copy3_test:"<<endl;
|
||||
vector <int> v1(10);
|
||||
for(int i = 0; i < v1.size(); i++)
|
||||
v1[i] = i;
|
||||
vector <int> v2(10);
|
||||
copy(v1.begin(), v1.end(), v2.begin());
|
||||
ostream_iterator<int> iter(cout, " ");
|
||||
copy(v2.begin(), v2.end(), iter);
|
||||
cout << endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user