Java / Java8 streams
Can you explain what is default method in Java 8?
Default methods are the method defined in the interfaces with method body and using the default keyword. The implementing class may choose to override the default method or they may invoke the default method itself.
Default method can call methods from the interfaces they are enclosed in. Also in default method, this keyword refers to the declaring interface.
More Related questions...