java

Let’s compile a simple java program in current directory(javac Test.java): //Test.java class Test { String a=”hello”; public static void main(String[]args) { Test b=new Test(); b.a=”world”; System.out.println(b.a); App app=new App(); app.fun(); […]