Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Rumah {
- private class Bilik {
- public int katil = 3;
- }
- public static void main(String[] args) {
- Rumah a = new Rumah();
- a.tengokBilik();
- }
- public Rumah tengokBilik(){
- Bilik wan = new Bilik();
- System.out.println(wan.katil); // Output 3
- return this;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement