diff --git a/language/oop5/interfaces.xml b/language/oop5/interfaces.xml index a04cc8f2ab..e0930aaf0a 100644 --- a/language/oop5/interfaces.xml +++ b/language/oop5/interfaces.xml @@ -1,5 +1,5 @@ - + Object Interfaces @@ -30,6 +30,12 @@ it would cause ambiguity. + + + Interfaces can be extended like classes using the extend + operator. + + &reftitle.examples; @@ -83,6 +89,46 @@ class BadTemplate implements iTemplate ]]> + + Extendable Interfaces + + + + See also the instanceof operator.