-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_vector_main.cc
55 lines (47 loc) · 1.38 KB
/
template_vector_main.cc
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
#include "template_vector.hh"
#include <cstdlib>
#include <cwchar>
#include <exception>
#include <stdexcept>
#include <vector>
using namespace template_vect;
using namespace std;
// https://www.geeksforgeeks.org/wide-char-and-library-functions-in-c/
int main(void) {
vector<wchar_t> vec1{'a', 'b', 'c', 'd', L'ö'};
TemplateVector<wchar_t> tv1(vec1);
wchar_t achar = 'a';
try {
achar = tv1[11];
} catch (out_of_range &oe) {
cerr << "Setting default character value." << endl;
achar = L'ß';
}
// https://stackoverflow.com/questions/2493785/how-i-can-print-the-wchar-t-values-to-console
wcout << L"achar is now " << achar << endl;
int index = -1;
while ((index < 0) || (index > tv1.ub())) {
try {
achar = tv1[index];
} catch (out_of_range &oe) {
wcerr << "Please input a index between 0 and " << tv1.ub() << ":" << endl;
wcin >> index;
}
}
wcout << L"achar is now " << tv1[index] << endl;
exit(EXIT_SUCCESS);
}
/*
clang-format off
Here, konsole encoding is UTF.
[alison@hildesheim Cpp-Exercises (master)]$ ./template_vector_main
::std::vector ctor
Setting default character value.
achar is now �
Here, konsole encoding is ISO-8859-1, although ISO-8859-15 is better for German.
[alison@hildesheim Cpp-Exercises (master)]$ ./template_vector_main
::std::vector ctor
Setting default character value.
achar is now ß
clang-format on
*/