Answers for "implement more than one interface"

0

why we can implement more than one interface in java

A class can implement any number of interfaces.
  In this case there is no ambiguity even
  though both the interfaces are having same method.
   Because methods in an interface are always
  abstract by default, which doesn’t let them
  give their implementation 
  in interface itself.
Posted by: Guest on January-14-2021

Code answers related to "implement more than one interface"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language