I have learned that I can never access a private variable, only with a get-function in the class. But then why can I access it in the copy constructor?
Example:
Copy constructor is class' member function and as such has access to class' data members, even those declared as 'private'.