How do we call two interfaces in one interface?

Showing Answers 1 - 5 of 5 Answers

kashid amol

  • Oct 10th, 2005
 

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{}

  Was this answer useful?  Yes

sri

  • Dec 11th, 2005
 

if a interface extends another interface what we call extended interface

for ex

interface A

{}

interface B extends A

{}

what we call A

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions