I seldom use inheritance, but when I do, I never use protected attributes because I think it breaks the encapsulation of the inherited classes.
Do you use protected attributes ? what do you use them for ?
|
|
I seldom use inheritance, but when I do, I never use protected attributes because I think it breaks the encapsulation of the inherited classes. Do you use protected attributes ? what do you use them for ?
|
|||
|
|
|
|
In this interview on Design by Bill Venners, Joshua Bloch, the author of Effective Java says:
Short version: it breaks encapsulation but it's a necessary evil that should be kept to a minimum. |
||
|
|
|
|
I recently worked on a project were the "protected" member was a very good idea. The class hiearchy was something like:
The Base implemented a std::list but nothing else. The direct access to the list was forbidden to the user, but as the Base class was incomplete, it relied anyway on derived classes to implement the indirection to the list. The indirection could come from at least two flavors: std::map and stdext::hash_map. Both maps will behave the same way but for the fact the hash_map needs the Key to be hashable (in VC2003, castable to size_t). So BaseMap implemented a TMap as a templated type that was a map-like container. Map and HashMap were two derived classes of BaseMap, one specializing BaseMap on std::map, and the other on stdext::hash_map. So:
For me, the only solution was to use protected for the std::list and the TMap member variables. There was no way I would put those "private" because I would anyway expose all or almost all of their features through read/write accessors anyway. In the end, I guess that if you en up dividing your class into multiple objects, each derivation adding needed features to its mother class, and only the most derived class being really usable, then protected is the way to go. The fact the "protected member" was a class, and so, was almost impossible to "break", helped. But otherwise, protected should be avoided as much as possible (i.e.: Use private by default, and public when you must expose the method). |
||
|
|
|
|
Scott Meyers says don't use protected attributes in Effective C++ (3rd ed.):
The reason is the same you give: it breaks encapsulations. The consequence is that otherwise local changes to the layout of the class might break dependent types and result in changes in many other places. |
||
|
|
|
|
In general, yes. A protected method is usually better. In use, there is a level of simplicity given by using a protected final variable for an object that is shared by all the children of a class. I'd always advise against using it with primitives or collections since the contracts are impossible to define for those types. Lately I've come to separate stuff you do with primitives and raw collections from stuff you do with well-formed classes. Primitives and collections should ALWAYS be private. Also, I've started occasionally exposing public member variables when they are declaired final and are well-formed classes that are not too flexible (again, not primitives or collections). This isn't some stupid shortcut, I thought it out pretty seriously and decided there is absolutely no difference between a public final variable exposing an object and a getter. |
||
|
|
|
|
I think protected attributes are a bad idea. I use CheckStyle to enforce that rule with my Java development teams. |
||
|
|
|
|
I use them. In short, it's a good way, if you want to have some attributes shared. Granted, you could write set/get functions for them, but if there is no validation, then what's the point? It's also faster. Consider this: you have a class which is your base class. It has quite a few attributes you wan't to use in the child objects. You could write a get/set function for each, or you can just set them. My typical example is a file/stream handler. You want to access the handler (i.e. file descriptor), but you want to hide it from other classes. It's way easier than writing a set/get function for it. |
||
|
|
|
In general, no you really don't want to use protected data members. This is doubly true if your writing an API. Once someone inherits from your class you can never really do maintenance and not somehow break them in a weird and sometimes wild way. |
||
|
|
|
|
There are never any good reasons to have protected attributes. A base class must be able to depend on state, which means restricting access to data through accessor methods. You can't give anyone access to your private data, even children. |
||
|
|
|
|
C#: I use protected for abstract or virtual methods that I want base classes to override. I also make a method protected if it may be called by base classes, but I don't want it called outside the class hierarchy. |
||
|
|
|
|
I don't use protected attributes in Java because they are only package protected there. But in C++, I'll use them in abstract classes, allowing the inheriting class to inherit them directly. |
||
|
|
|
|
You may need them for static (or 'global') attribute you want your subclasses or classes from same package (if it is about java) to benefit from. Those static final attributes representing some kind of 'constant value' have seldom a getter function, so a protected static final attribute might make sense in that case. |
||
|
|