Classes are about inheritance and composition. Is using the const
keyword related to the principle of least privilege?
I understand inheritance and composition and I understand them but what about principle of least privilege? Can anyone explain it to me and how to remedy my code to contains principle of least privilege?
class A {
int i;
public:
A(int ii) : i(ii) {}
~A() {}
void f() const {}
};
class B {
int i;
public:
B(int ii) : i(ii) {}
~B() {}
void f() const {}
};
class C : public B {
A a;
public:
C(int ii) : B(ii), a(ii) {}
~C() {} // Calls ~A() and ~B()
void f() const { // Redefinition
a.f();
B::f();
}
};
int main() {
C c(47);
} ///:~