Interface Default and Static Methods
?
Introduced in Java 8
Interfaces can now have default methods and static methods.
A default method in an is defined as a regular method and called as such
A static method in an interface uses the `static` keyword and can be called as `MyInterface.myMethod()`
<!--SR:!2025-11-20,2,190-->