Lest's Start JAVA Programming
Part 8
What is Final Variable?
Final variable is a variable that can only assign value once. If we assign a value to a final variable we can't assign another value to that variable.
How to create final variable?
We can create final variable by adding final keyword in front of the variable.
Let's see some examples
Comments
Post a Comment