Saturday, 19 March 2016

What is final ?


A final class can't be extended ie., final class may not be subclassed.

A final method can't be overridden when its class is inherited.
You can't change value of a final variable (is a constant)

No comments:

Post a Comment

Note: only a member of this blog may post a comment.