filmov
tv
Java Practice Examples - Module 5-4 Default Methods in an Interface
Показать описание
In this series, we'll be using the free Visual Studio Code to develop and test our code samples.
-- Video Description --
In this video we look at default methods in an interface. Most methods in interfaces are abstract. However, the default method will allow you to write your code in the interface, so you won't have to override the method in the classes that implement it.
This has limitations, but can make working with interfaces faster.