Except the scope and the storage differences, are there any other major difference between instance and local variables in Java?
Except the scope and the storage differences, are there any other major difference between
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
One extra thing I can think of:
Instance variables are given default values, i.e., null if it’s an object reference, and 0 if it’s an int.
Local variables don’t get default values, and therefore need to be explicitly initialized (and the compiler usually complains if you fail to do this).