Answers for "difference between static nd final in java"

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

Code answers related to "difference between static nd final in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language