JavaPatternMatching/bin/mycompiler/test/javaConcepts/staticAccess/TestStaticAccess.jav
2013-10-18 13:33:46 +02:00

19 lines
223 B
Java
Executable File

public class Access{
public static String staticMember="def";
public static staticMethod() {
return "abc";
}
}
class TestStaticAccess {
public method1(a,b) {
x;
a=x.staticMember;
b=x.staticMethod();
}
}