Play audio slide show -- Keyboard shortcut: 'x'  Back to notes -- Keyboard shortcut: 'u'              Play sound for this slide -- Keyboard shortcut: 'y'  Lecture 4 - slide 6 : 33
Program 1
 

package enPakke;
public class ClassB {   // skal være public for at kunne ses fra A.

  int i;

  public ClassB (int i){
    this.i = i;
  }

  public String toString(){
    return "En instans af B med værdien " + i;
  }

}