Answers

Question and Answer:

  Home  Java Classes

⟩ How to call two interfaces in one interface?

You can not call 2 interface in interface but you can extend interfaces in your interface.Example :

Interface I1{..}Interface I2 extends I1{..}Interface I3 extends I2{}

 168 views

More Questions for you: