In
Java 8,
interfaces can contain implemented
methods,
static methods, and the so-called "default"
methods (which the implementing classes do not need to override). ...
static methods do not belong to
interfaces. They belong to utility classes. "default"
methods shouldn't
have been allowed in
interfaces at all.Mar 21, 2014
read more >>