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.

Visible.java 217B

123456789101112131415
  1. package test3;
  2. class Visible2 {
  3. public int pub;
  4. protected int pro;
  5. private int pri;
  6. int pack;
  7. }
  8. public class Visible {
  9. public int pub;
  10. protected int pro;
  11. private int pri;
  12. int pack;
  13. }