mirror of
https://github.com/unknownworlds/NS.git
synced 2024-12-02 17:21:56 +00:00
2f9f0c732e
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@277 67975925-1194-0748-b3d5-c16f83f1a3a1
30 lines
753 B
C++
30 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;
|
|
}
|