Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //MemberAccessTest.java
  2. //Private members of class Time1 are not accessible.
  3.  
  4. public class MemberAccessTest
  5. {
  6. public static void main(String[] args)
  7. {
  8. Time1 time = new Time1();
  9.  
  10. time.hour = 7; //error: has private access
  11. time.minute = 15; //error: has private access
  12. time.second = 30; //error: has private access
  13. }
  14. }