Computer Science, asked by luvkumar1052, 11 months ago

What is a blank uninitialized final variable in java?

Answers

Answered by harshitha3792
0
Wttttttttt I'm unable to understand
Answered by yalok2191
0

A final variable can be explicitly initialized only once. A reference variable declared final can never be reassigned to refer to a different object. However, the data within the object can be changed. So, the state of the object can be changed but not the reference. With variables, the final modifier often is used with static to make the constant a class variable.

Similar questions