TI-S2

Opdracht Const C++

Inhoud

Opdracht OO3.1 Auto

Voor variabelen geeft auto aan dat het type van de variabele automatisch wordt afgeleid bij initialisatie.

Voer onderstaande opdracht uit door de code alleen te lézen. Gegeven de klasse definitions (zie onder).

class course {
public:
    const std::vector<char> name;
};

class mark {
public:
    course& course;
    uint8_t number;
};

class student {
public:
    const std::string name;
    int number;
    std::vector<mark> marks;
};

class klas {
public:
    const std::array<char, 3> name;
    std::vector<student> students;
    klas() {
    }
};

class definitions

...
klas v1a;
auto a = v1a;
auto b = a.name;
auto c = a.students[3];
auto d = c.name;
auto e = c.number;
auto f = c.marks[7];
auto g = f.course;
auto h = f.number;
auto i = g.name;
...

Wat zijn de typen van de variabelen?