[Solved] Please tell me the difference b/w below three declaration- [closed]
[ad_1] Short answer: Final: you cannot change the var after the declaration. Static: the variable is associated with a class not with instances private static int i=10; // belongs to the class private static final int j=10; // belongs to the class and it’s unchangeable private final int k = 10; // it’s unchangeable Long … Read more