What is the difference between an interface and abstract class?

前端 未结 30 1864
情歌与酒
情歌与酒 2020-11-21 11:51

What exactly is the difference between an interface and abstract class?

30条回答
  •  我寻月下人不归
    2020-11-21 12:11

    When you want to provide polymorphic behaviour in an inheritance hierarchy, use abstract classes.

    When you want polymorphic behaviour for classes which are completely unrelated, use an interface.

提交回复
热议问题