The Follwing code will result in a compiler error. Why? class Test { void doStuff() { private int x = 7; this.doMore(x); } }
The use of This; local to a function is illegal
Access modifiers can not be applied to local variables
All classes must be declared public
None of these