-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvector_manipulate.cpp
92 lines (73 loc) · 1.49 KB
/
vector_manipulate.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#include <iostream>
#include <vector>
#include <string>
using namespace std;
/*
This is a referance incase I forget how to manipulate vectors.
Shown in this referance are the following vector types:
- int
- char
- string
- class
*/
class Example{
public:
void SetUname(string param);
string GetUname(){
return username;
}
private:
string username;
};
void Example::SetUname(string param){
username = param;
}
//** EXAMPLES **//
void vecExInt(){
vector<int> usrInt(5);
usrInt.at(0) = 111;
usrInt.at(1) = 131;
usrInt.at(2) = 21;
usrInt.at(3) = 144;
usrInt.at(4) = 152;
cout << usrInt.at(3);
cout << endl;
}
void vecExChar(){
vector<char> usrChar(5);
usrChar.at(0) = 'a';
usrChar.at(1) = 'b';
usrChar.at(2) = 'c';
usrChar.at(3) = 'd';
usrChar.at(4) = 'e';
cout << usrChar.at(4);
cout << endl;
}
void vecExString(){
vector<string> usrString(5);
usrString.at(0) = "test";
usrString.at(1) = "hello";
usrString.at(2) = "world";
usrString.at(3) = "wexample";
usrString.at(4) = "blah";
cout << usrString.at(2);
cout << endl;
}
void vecExClass(){
vector<Example> usrClass(5);
usrClass.at(0).SetUname("test");
usrClass.at(1).SetUname("hello there!");
usrClass.at(2).SetUname("this is a test");
usrClass.at(3).SetUname("1 2 3 qzx");
usrClass.at(4).SetUname("!@#$%^&*");
cout << usrClass.at(1).GetUname();
cout << endl;
}
//** MAIN FUNCTION **//
int main(int argc, char const *argv[]) {
//vecExInt();
//vecExChar();
//vecExString();
vecExClass();
return 0;
}