0
Static local variable throws compile time error???
Static void m() { Static int x=5; } y error?
4 Respuestas
+ 3
You can't declare static variable in a method in Java as you can do in C++
+ 2
In Java things are not implemented if they are not really needed and can be solved in other way to keep language simple.
0
Reason??
0
Reason??