i have a class named fdetails and i do not want any other class to inherit from this class. Can i set it to not being inherited by another class. I would like to get the things done in the following 3 languages
- Java
- VB.NET 3.5
- C# 3.5
|
i have a class named fdetails and i do not want any other class to inherit from this class. Can i set it to not being inherited by another class. I would like to get the things done in the following 3 languages
|
|||
|
|
|
|||
|
|
|
In C# you use the In VB.NET you use the In Java you use the keyword |
|||
|
|
|
In JAVA - use the final keyword:
In C# - the sealed keyword:
|
|||||||
|
|
In Java use the final keyword:
In C# use the sealed keyword:
In VB.net use the NotInheritable keyword:
|
|||
|
|
|
please, don't do it. If you don't want to subclass your class, don't do it, but don't prevent others (aka yourself in the future) to do it |
|||||||||||||||||
|