1
Reply

Differences between Interfaces and Abstract Cliass or methods and where can use

Rajendra Prasad

Rajendra Prasad

16y
4.7k
0
Reply

    1).In Interface access modifer not allow. whereas Abstract class allows access modifier. 2).In Interface have only signature. whereas Abstract class may have both signature and definitions. 3).In Interface support the Multiple Inheritace.whereas Abstract class can not support the multiple Inheritance. 4).Interface is slower compare than Abstract class.