final Keyword?final means βcannot be changed further.β
You use
finalwhen you want permanent, unmodifiable, or fixed values/structures in your program.
Depending on what you apply it to:
Syntax:
final int MAX_SPEED = 120;
This value cannot be changed:
MAX_SPEED = 150; // β ERROR
PIMAX_USERSAPP_VERSION