Stop show with sound  Next slide in show -- Keyboard shortcut: 'n'  1 minute, 31 secondsLecture 4 - slide 32 : 33
Program 2
class Application {

  public static void main(String[] args){
    Outer o = new Outer();
    Outer.Inner i = o.makeInner();
    o = null;
    System.out.println(i);  // bruger toString()
  }

}