// example6.cpp #include #include using namespace std; #include "Vector.h" int main() { Vector vstr; vstr[0] = "test"; vstr[1] = "foo"; cout << vstr << endl; Vector v1; return 0; }