Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Write a description of class MemberAccessTest here.
- * Private members of class Time 1 are not accessible
- * @author Ahmad Lamaul Farid
- * @version 08 Oktober 2020
- */
- public class MemberAccessTest
- {
- public static void main( String[] args )
- {
- Time1 time = new Time1();
- time.hour = 7;
- time.minute = 15;
- time.second = 30;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement