How to stop the class to be inherited by other class.
feedback
|
C++11 solutionIn C++11, you can seal a class by using
To know the other uses of final, see my answer here: C++03 solutionBjarne Stroustrup's code : Can I stop people deriving from my class?
Generic_lockSo we can make use of template to make the
| |||||
feedback
|
|
See this FAQ: How can I set up my class so it won't be inherited from? | |||
|
feedback
|
|
C++11 adds the ability to prevent inheriting from classes or simply preventing overriding methods in derived classes. This is done with the special identifier
or
Note that final is not a language keyword. It is technically an identifier; it only gains special meaning when used in those specific contexts. In any other location, it can be a valid identifier. | ||||
|
feedback
|
|
There are two ways, the simple cheap, and the correct one. The two answers by @Naveen and @Nawaz deal with the correct one, that requires manual creation of a sealer class for each class that you actually want to seal. The not fool-proof way, which is used in the adobe libraries is using a templated class for that. The problem is that you cannot declare the template argument as a friend, and that means that you will have to switch from
And you can automate it with a macro (I don't remember the exact flavor of the macro in Adobe's code):
Now this will catch people that mistakenly try to inherit without knowing that they shouldn't:
But it will not inhibit people that really want to from deriving, as they can gain access to the constructor by deriving from the template themselves:
I am not sure whether this will change in C++0x, I think I recall some discussions on whether a class template would be allowed to befriend one of it's arguments, but in a cursory search through the draft I cannot really tell. If that was allowed then this would be a fine generic solution:
| |||
|
feedback
|
|
abovementioned template class Usable_lock is compilable and working in VC08 | |||
|
feedback
|
|
You cannot. C++ is not Java or C#. And also there is no point, ever, IMHO. | |||||||||||||
feedback
|