Interface vs Abstract Class (general OO)

Posted by Kave on Stack Overflow See other posts from Stack Overflow or by Kave
Published on 2009-04-17T16:42:38Z Indexed on 2010/05/12 22:14 UTC
Read the original article Hit count: 285

Hi,

I have had recently two telephone interviews where I've been asked about the differences between an Interface and an Abstract class. I have explained every aspect of them I could think of, but it seems they are waiting for me to mention something specific, and I dont know what it is.

From my experience I think the following is true, if i am missing a major point please let me know:

Interface:

Every single Method declared in an Interface will have to be implemented in the subclass. Only Events, Delegates, Properties (C#) and Methods can exist in a Interface. A class can implement multiple Interfaces.

Abstract Class Only Abstract methods have to be implemented by the subclass. An Abstract class can have normal methods with implementations. Abstract class can also have class variables beside Events, Delegates, Properties and Methods. A class can only implement one abstract class only due non-existence of Multi-inheritance in C#.

1) After all that the interviewer came up with the question What if you had an Abstract class with only abstract methods, how would that be different from an interface? I didnt know the answer but I think its the inheritance as mentioned above right?

2) An another interviewer asked me what if you had a Public variable inside the interface, how would that be different than in Abstract Class? I insisted you can't have a public variable inside an interface. I didn't know what he wanted to hear but he wasn't satisfied either.

Many Thanks for clarification, Kave

See Also:

© Stack Overflow or respective owner

Related posts about interface

Related posts about abstract-class