JavaPatternMatching/bin/mycompiler/test/javaConcepts/staticAccess/TestStaticAccess.jav

19 lines
223 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
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();
}
}