Skip to content

Instantly share code, notes, and snippets.

@nasrabadiAM
Created February 13, 2018 16:12
Show Gist options
  • Save nasrabadiAM/004fb5572807edd8650b1c8e3f26e31e to your computer and use it in GitHub Desktop.
Save nasrabadiAM/004fb5572807edd8650b1c8e3f26e31e to your computer and use it in GitHub Desktop.
what final keyword do in java

what final keyword do in java and how to use it

final classes

any class that defines final will not be subclassed.

you can not extends any class from a final class.

final methods

any method that defines final will not be overriden.

you can not override final methods.

final variables

final variables initiated only once.

if you define setter for a final variable, you will get a compile time error from the compiler.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment