
class Temp { int x = 10; void show(int y ,Temp this.x ) { System.out.println(x); System.out.println(this.x); } public static void main(String ...s) { Temp t = new Temp();
t.show(20,t); System.out.println(t); } }
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.