Stop show with sound  Next slide in show -- Keyboard shortcut: 'n'  1 minute, 26 secondsLecture 4 - slide 31 : 33
Program 1
public class Outer {
  private int a = 7; 
  private Inner b;
 
  private  class Inner{
    private int x = 13;
    private int y = a;

    // fuld adgang til a og b fra Inner metoder
  } 

   public Outer(){
     b = new Inner(); 
   }  

   public Inner makeInner(){
     return new Inner();
   }
}