天天看点

What is difference between abstract class and interface

1. A sub class could implements more than one Interface, however it could only extends one Abstract class

2. Every method in interface should be abstract,but this is not necessary in abstract class

3. Interface will contain only  final static variables, but abstract class could have final variables and Instances Variables.

继续阅读