All three classes are tightly encapsulated, because the data members are private. A tightly encapsulated class can have public accessor and mutator methods, but it is not required to have those methods.
Is that universally accepted definition?
P Veer
Greenhorn
Joined: Oct 21, 2003
Posts: 9
posted
0
Yes.I think so.Accessor and mutator methods are only used to get access of these private data members outside the class.If they too are declared private or protected it doesn't make sense to write these additional methods.
maverickthinker
P Veer
Greenhorn
Joined: Oct 21, 2003
Posts: 9
posted
0
It is not required to have those methods since they are only used to access private data members.If you want to restrict the access to private data members within the class there is no need for creating accesors and mutators.