Java Default or static method in Interface

Default Method default method is used to provide common functionality to class. it can be override by implemented class. Static Method static method belongs to Interface, can’t override by class.…

0 Comments