Czytam o nowych funkcjach pod adresem : http://www.javaworld.com/article/2078836/java-se/love-and-hate-for-java-8.html
Widziałem poniższy przykład:
Korzystanie z klasy anonimowej:
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
System.out.println("Action Detected");
}
});
Z Lambda:
button.addActionListener(e -> {
System.out.println("Action Detected");
});
Co zrobiłby ktoś, MouseListener
gdyby chciał zaimplementować wiele metod w klasie anonimowej, np .:
public void mousePressed(MouseEvent e) {
saySomething("Mouse pressed; # of clicks: "
+ e.getClickCount(), e);
}
public void mouseReleased(MouseEvent e) {
saySomething("Mouse released; # of clicks: "
+ e.getClickCount(), e);
}
... i tak dalej?