Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Write a description of class MemberAcces here.
- *
- * @author (Muhammad Bagus Istighfar)
- * @version (14.10.20)
- */
- public class MemberAccesTest
- {
- public static void main (String[] args)
- {
- Time1 time = new Time1();
- time.hours=7;// error: has private acces in Tim1
- time.minute=15;//error: has private acces in Time1
- time.second=30;//error: has private acces in Time1
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment