Is an interface a class?

后端 未结 6 1224
醉梦人生
醉梦人生 2020-12-15 17:18

Is an interface a special kind of class or can you say that an interface isn\'t a class at all?

6条回答
  •  抹茶落季
    2020-12-15 18:11

    Interface is just a contract which all implementing classes should follow. An interface is something like a template which cannot make an impact until a class implements it.

提交回复
热议问题