Java Tutorial Series (44/90). Prefer one article? Read the complete Java tutorial.
Short description
Modern Java interfaces can include default/static methods. Classes may implement many interfaces.
Interface
interface Notifier {
void send(String to);
}
class EmailNotifier implements Notifier {
public void send(String to) { /* send email */ }
}