I was looking at another question about final variables and noticed that you can declare final variables without initializing them (a blank final variable). Is there a reaso
noticed that you can declare final variables without initializing them
final
You have to initialize it later (for example in the constructor) so it wont stay empty.