Ereignis-Behandlung in Applets (III)

Id: event.tex,v 1.2 2006-12-11 15:46:45 waldmann Exp

empfohlene Schreibweise mit anonymer Klasse:

public class Click { ...
 public void init () { ...
  inc.addActionListener 
    (new ActionListener () {
      public void actionPerformed 
        (ActionEvent a) {
          c.step(); out.setText (c.get());
      } }
    )
} }
Aufgaben: füge Knöpfe für decrement und reset hinzu.



Johannes Waldmann 2009-01-12