You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
interface contains method which does not have implementation but if that method is used by multiple classes it become difficult to make changes on multiple places.
default method helps us writing implementation inside the interface in java 1.8
*/
/*output
=> Bye
*/
/*for situation in which there are more than one inetrface having same method name and class is implementing them together then it will give error. To solve this either override the method or use super keyword to denote interface name. */