What is the difference between an interface and abstract class?

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

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

30条回答
  •  再見小時候
    2020-11-21 12:24

    In an interface all methods must be only definitions, not single one should be implemented.

    But in an abstract class there must an abstract method with only definition, but other methods can be also in the abstract class with implementation...

提交回复
热议问题