Skip to main content

This version of the product is no longer supported, and this documentation is no longer updated regularly. See the latest version of this content.Opens in a new tab

Final

Specifies whether this method is final (cannot be overridden in subclasses).

Usage

To specify that a method is final, use the following syntax:

Method name(formal_spec) As returnclass [ Final ]
{
   //implementation
}

Otherwise, omit this keyword or place the word Not immediately before the keyword.

Details

A class member that is marked as final cannot be overridden in subclasses.

Default

If you omit this keyword, the method is not final.

See Also

FeedbackOpens in a new tab