What is an Interface

后端 未结 4 927
醉梦人生
醉梦人生 2021-01-27 05:06

With reference to UML diagrams, what is an interface? and can someone explain in more simpler words. I cant understand anything from googling it.

4条回答
  •  旧时难觅i
    2021-01-27 05:38

    An interface is like a template design for a class that contains no data or implemetnation; only definitions for methods, properties etc. These are abstract and cannot be instantiated but can be inherited from at which point all specified methods etc must be implemented by the concrete class inheriting the interface.

提交回复
热议问题