You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PrivateCall_Instance_Package2.java 181B

1234567891011
  1. package def;
  2. public class PrivateCall_Instance_Package2 {
  3. public void test() {
  4. }
  5. public static void main(String []argv) {
  6. new PrivateCall_Instance_Package2().test();
  7. }
  8. }