NotInheritable
Usage
To specify that this method cannot be inherited in subclasses, use the following syntax:
Method name(formal_spec) As returnclass [ NotInheritable ] { //implementation }
Otherwise, omit this keyword or place the word Not immediately before the keyword.
Details
This keyword specifies that this method cannot be inherited in subclasses.
While having a member not be inheritable by its subclasses can be very useful in some cases, the keyword should be used rarely and judiciously, as it breaks the inheritance contract.
Default
If you omit this keyword, this method is inheritable.
See Also
-
“Method Definitions” in this book
-
“Defining and Calling Methods” in Using Caché Objects
-
“Defining Method and Trigger Generators” in Using Caché Objects
-
“Introduction to Compiler Keywords” in Using Caché Objects