+ 1
[SOLVED] So, I was trying to make an example of function Pass by Reference in java... But it shows me error
2 Answers
+ 2
Variable 'a' is local main method variable. Not instance variable of pro class.
Declare 'a' outside main method, and in class level scope.
+ 2
Thanks Jayakrishnađźđł