Answers for "static vs final"

0

final vs static keyword in java

The two really aren't similar. 
"STATIC" fields are fields that do not 
belong to any particular instance of a class.
and there is only one copy of the variable in memory
shared by all instances of the class.
On the other hand
"FINAL" The final keyword just means the value
can't be changed. Without final, any object can 
change the value of the variable
Posted by: Guest on December-23-2020
-49

default value of final static variable in java

Null
Posted by: Guest on October-15-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language