I\'m cleaning up Java code for someone who starts their functions by declaring all variables up top, and initializing them to null/0/whatever, as opposed to declaring them a
Its a matter of readability and personal preference rather than performance. The compiler does not care and will generate the same code anyway.