mirror of
https://github.com/unknownworlds/NS.git
synced 2024-12-03 09:42:05 +00:00
31 lines
753 B
C++
31 lines
753 B
C++
|
// STLport regression testsuite component.
|
||
|
// To compile as a separate example, please #define MAIN.
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <vector>
|
||
|
#include <algorithm>
|
||
|
|
||
|
#ifdef MAIN
|
||
|
#define vec4_test main
|
||
|
#endif
|
||
|
|
||
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
||
|
using namespace std;
|
||
|
#endif
|
||
|
int vec4_test(int, char**)
|
||
|
{
|
||
|
cout<<"Results of vec4_test:"<<endl;
|
||
|
vector<int> v(4);
|
||
|
v[0] = 1;
|
||
|
v[1] = 4;
|
||
|
v[2] = 9;
|
||
|
v[3] = 16;
|
||
|
cout << "front = " << v.front() << endl;
|
||
|
cout << "back = " << v.back() << ", size = " << v.size() << endl;
|
||
|
v.push_back(25);
|
||
|
cout << "back = " << v.back() << ", size = " << v.size() << endl;
|
||
|
v.pop_back();
|
||
|
cout << "back = " << v.back() << ", size = " << v.size() << endl;
|
||
|
return 0;
|
||
|
}
|