document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * Private members of class Time1 are not accessible.
  3.  *
  4.  * @author Muthia Qurrota Akyun
  5.  * 9 Oktober 2020
  6.  */
  7.  
  8. public class MemberAccessTest  
  9. {  
  10.    public static void main (String[] args)  
  11.    {  
  12.      Time1 time = new Time1(); //create and initialize Time1 object  
  13.        
  14.      time.hour = 7;
  15.      time.minute = 15;
  16.      time.second = 30;
  17.    }  
  18. }
');