1 2 3 4 5 6 7 8
interface DefaultMethod { int size(); default boolean isEmpty() { return size() == 0; } strictfp default void run() { } }