public class Foo extends Bar {
public void test() {
Member.f();
}

public static void main(String[] ps) {
new Foo().test();
}
}

class Bar {
public static class Member {
public static void f() {
System.out.println(“f in Member”);
}
}
}

Submitted on 2 March 2006 at 23:59

Log in to post comments