13
votes
8answers
1k views
Interface vs Abstract Class (general OO)
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 …
12
votes
12answers
2k views
Best practice Unit testing abstract classes?
Hello
I was wondering what the best practice is for unit testing abstract classes and classes that extend abstract classes.
Should I test the abstract class by extending it and stubbing out the …
10
votes
3answers
788 views
Naming Conventions for Abstract Classes
I distinctly remember that, at one time, the guideline pushed by Microsoft was to add the "Base" suffix to an abstract class to obviate the fact that it was abstract. Hence, we have classes like …
10
votes
9answers
4k views
How do you declare an interface in c++
How do i setup a class that represents an interface? Is this just an abstract base class?
10
votes
10answers
647 views
Should Helper/Utility Classes be abstract?
I commonly find myself extracting common behavior out of classes into helper/utility classes that contain nothing but a set of static methods. I've often wondered if I should be declaring these …
10
votes
19answers
1k views
Performance penalty for working with interfaces in C++?
Is there a runtime performance penalty when using interfaces (abstract base classes) in C++?
9
votes
4answers
384 views
LinqToSql - mapping exception when using abstract base classes
Problem: I would like to share code between multiple assemblies. This shared code will need to work with LinqToSql-mapped classes.
I've encountered the same issue found here, but I've also found a …
9
votes
13answers
1k views
When to use an interface instead of an abstract class and vice versa?
This may be a generic OOP question. I wanted to do generic comparison between an interface and an abstract class on the basis of their usage. When would one want to use and interface and when would on …
9
votes
6answers
424 views
Exact use of Abstract class
What is the exact use of an Abstract class? Is not possible to do the same things in an ordinary class as it is an an abstract class?
8
votes
9answers
940 views
Template or abstract base class?
If I want to make a class adaptable, and make it possible to select different algorithms from the outside -- what is the best implementation in C++?
I see mainly two possibilities:
Use an abstract …
8
votes
6answers
2k views
Why can’t static methods be abstract in Java
The question is in Java why can't I define an abstract static method? for example
abstract class foo {
abstract void bar( ); // <-- this is ok
abstract static void bar2(); //<-- this …
7
votes
8answers
431 views
Preferred way to simulate interfaces in C++
Since C++ lacks the interface feature of Java/C#, what is the preferred way to simulate interfaces in C++ classes? My guess would be multiple inheritance of abstract classes.
What are the …
7
votes
5answers
658 views
Pimpl idiom vs Pure virtual class interface
I was wondering what would make a programmer to choose either Pimpl idiom or pure virtual class and inheritance.
I understand that pimpl idiom comes with one explicit extra indirection for each …
7
votes
4answers
2k views
difference between abstract class and interface in Python
Hi all,
can someone please explain the difference between abstract class and interface in Python
7
votes
10answers
418 views
Is there a benefit to having both an abstract class and an interface?
I started out with a generic interface called ILogin. The interfaces requires that you implement two properties: UserID and Password. I have many login-type classes that implement this interface. …
