Math, asked by samanwitaroy6860, 1 year ago

Difference between static variable and final

Answers

Answered by Sneha0018
1
a static variable is a variable that has been allocated "statically", meaning that its lifetime (or "extent") is the entire run of the program.

Once a final variable has been assigned, it always contains the same value. If a final variable holds a reference to an object, then the state of the object may be changed by operations on the object, but the variable will always refer to the same object (this property of final is called non-transitivity).
Similar questions