class Demo { int x=10; // global variable void show() { int x=20; // local variable System.out.println(x); //local System.out.println(this.x); //global } } public class Main { public static void main(String args[]) { Demo d=new Demo(); d.show(); } }
20
10