Which IDL definition correctly defines the Child interface as a subinterface of Parent?

Which IDL definition correctly defines the Child interface as a subinterface of Parent?

Which IDL definition correctly defines the Child interface as a subinterface of Parent?

A.
interface Parent {};
interface Child : Parent {};

B.
interface Parent {};
interface Child extends Parent {};

C.
interface Parent {};
interface Child :: Parent {};

D.
interface Parent {};
interface Child implements Parent {};



Leave a Reply 0

Your email address will not be published. Required fields are marked *