Tagged Questions

Full abstract base classes are classes either explicitly declared to be abstract, or which contain abstract (unimplemented) methods.

learn more… | top users | synonyms

111
votes
9answers
77k 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?
91
votes
8answers
24k views

Creating an abstract class in Objective C

I'm originally a Java programmer who now works with Objective-C. I'd like to create an abstract class but that doesn't appear to be possible in Objective-C. Is this possible? If not, how close to ...
68
votes
14answers
2k views

Why java.lang.Object is not abstract?

Why is the Object class, which is base class of 'em all in Java, not abstract? I've had this question for a really really long time and it is asked here purely out of curiosity, that's all. Nothing ...
63
votes
12answers
14k views

Best practice Unit testing abstract classes?

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 abstract ...
55
votes
14answers
10k views

Interface vs Abstract Class (general OO)

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 ...
51
votes
6answers
21k 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 ...
40
votes
4answers
24k views

Difference between abstract class and interface in Python

What is the difference between abstract class and interface in Python?
40
votes
4answers
40k views

Can an abstract class have a constructor?

Can an abstract class have a constructor? If so, how it can be used and for what purposes?
31
votes
11answers
1k views

Is there a way to make a method which is not abstract but must be overridden?

Is there any way of forcing child classes to override a non-abstract method of super class? I need to be able to create instances of parent class, but if a class extends this class, it must give its ...
28
votes
4answers
7k views

What is the difference between an interface and abstract class?

What exactly is the difference between an interface and abstract class?
27
votes
8answers
4k 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 ...
23
votes
7answers
20k views

Why can't I create an abstract constructor on an abstract C# class?

I am creating an abstract class. I want each of my derived classes to be forced to implement a specific signature of constructor. As such, I did what I would have done has I wanted to force them to ...
23
votes
14answers
10k 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 ...
21
votes
4answers
6k 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 ...
20
votes
2answers
3k views

Should an abstract class have a serialVersionUID

In java, if a class implements Serializable but is abstract, should it have a serialVersionUID long declared, or do the subclasses only require that? In this case it is indeed the intention that all ...
19
votes
9answers
877 views

How can you explain the difference between an interface and an abstract class to a non-programmer? [closed]

Possible Duplicate: When to use an interface instead of an abstract class and vice versa? Hi, I am teaching OOP concepts to non-programmers. I wanted to know how can you explain the ...
18
votes
9answers
530 views

Why use method local abstract inner classes

One of the legal modifiers you can use with method local inner classes is abstract. For example: public class Outer { public void method(){ abstract class Inner{ } } } Is ...
18
votes
4answers
2k views

Interface or an Abstract Class: which one to use?

Please explain when I should use an interface and when I should use abstract class? How I can change my abstract class in to an interface?
16
votes
13answers
11k views

How to implement an abstract class in ruby?

I know there is no concept of abstract class in ruby. But if at all it needs to be implemented, how to go about it? I tried something like... class A def self.new raise 'Doh! You are trying to ...
16
votes
10answers
2k 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 ...
15
votes
4answers
2k views

Java Abstract Class Implementing an Interface with Generics

I am trying to define an abstract class implementing Comparable. When I define the class with following definition: public abstract class MyClass implements Comparable <MyClass> subclasses ...
15
votes
10answers
763 views

Use of Java [Interfaces / Abstract classes]

Lately i decided to take a look at Java so i am still pretty new to it and also to the approach of OO programming, so i wanted to get some things straight before learning more, (i guess it's never to ...
15
votes
7answers
6k views

Using Mockito to test abstract classes

I'd like to test an abstract class. Sure, I can manually write a mock that inherits from the class. Can I do this using a mocking framework (I'm using Mockito) instead of hand-crafting my mock? How?
14
votes
8answers
2k views

Do/can abstract classes replace interfaces?

In Java you can create an abstract class that contains only abstract methods. On the other hand, you can create an interface that declares the same methods. So can you use abstract classes instead of ...
14
votes
19answers
3k views

Performance penalty for working with interfaces in C++?

Is there a runtime performance penalty when using interfaces (abstract base classes) in C++?
13
votes
9answers
1k views

Can you cache a virtual function lookup in C++?

Say I have a virtual function call foo() on an abstract base class pointer, mypointer->foo(). When my app starts up, based on the contents of a file, it chooses to instantiate a particular concrete ...
12
votes
4answers
223 views

Can I define an abstract class for all derived Singletons in this way?

This is my abstract class which must be derived each time I want to make a Singleton: public abstract class Singleton<T> where T : Singleton<T> { private static readonly Lazy<T> ...
12
votes
2answers
234 views

Are there good reasons for a public constructor of an abstract class

It is not possible to create an object by directly calling the constructor of an abstract class. The constructor of an abstract class can be called only from a derived class. It therefore seems to me ...
12
votes
2answers
217 views

Refactoring abstract class in C#

Sorry if this sounds simple, but I'm looking for some help to improve my code :) So I currently have the following implementation (which I also wrote): public interface IOptimizer { void ...
12
votes
9answers
4k 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 ...
12
votes
7answers
1k views

Need for Abstract Class as well as Interface?

An interface is a 100% abstract class, so we can use an interface for efficient programming. Is there any situation where an abstract class is better than an interface?
11
votes
6answers
1k views

Difference between Abstract Class and Trait

What is the conceptual difference between abstract classes and traits?
11
votes
4answers
1k views

LINQ to SQL - 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 LINQ to SQL-mapped classes. I've encountered the same issue found here, but I've also found a ...
11
votes
6answers
1k 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?
10
votes
3answers
206 views

What's the use case of secondary constructors in abstract classes?

Consider this code: abstract class Foo(val s: String) { def this(i: Int) = this("" + (i+2)) } As far as I understand constructors aren't inherited and secondary constructors cannot be called from ...
10
votes
4answers
136 views

Ways to achieve effective Java traits?

Please let me know if this is inappropriate as formulated (in particular whether Programmers.SE or something would be better for the question.) Alright. So I've got a number of 'traits' that I'm ...
10
votes
2answers
291 views

can the keyword 'this' be used in an abstract class in java

I tried with below example, it is working fine. I expected it to pick sub-class's value since object won't be created for super class (as it is abstract). But it is picking up super class's field ...
10
votes
7answers
2k views

Why can't we declare a std::vector<AbstractClass>?

Having spent quite some time developping in C#, I noticed that if you declare an abstract class for the purpose of using it as an interface you cannot instantiate a vector of this abstract class to ...
10
votes
9answers
1k views

Abstract class in Java

What is an "abstract class" in Java?
9
votes
3answers
375 views

How to disable parameterless constructor in C#

abstract class CAbstract { private string mParam1; public CAbstract(string param1) { mParam1 = param1; } } class CBase : CAbstract { } For the class CBase, it should be ...
9
votes
1answer
266 views

implementing a cast operator in a generic abstract class

I'm trying to be lazy and implement the cast operators in the abstract base class rather than in each of the derived concrete classes. I've managed to cast one way, but I'm unable to cast the other. ...
9
votes
5answers
602 views

Constructor of an abstract class in C#

Why is it possible to write constructor for an abstract class in C#? Far as I know we can't instantiate an abstract class.. so what is it for? And It's doesn't instantiate the class, right?
9
votes
5answers
1k views

Pure virtual methods in C#?

I've been told to make my class abstract: public abstract class Airplane_Abstract And to make a method called move virtual public virtual void Move() { //use the property to ...
9
votes
7answers
366 views

Are interfaces redundant with multiple inheritance?

This is not yet another question about the difference between abstract classes and interfaces, so please think twice before voting to close it. I am aware that interfaces are essential in those OOP ...
9
votes
3answers
201 views

Relevance of 'public' constructor in abstract class

Is there any relevance of a 'public' constructor in an abstract class? I can not think of any possible way to use it, in that case shouldn't it be treated as error by compiler (C#, not sure if other ...
9
votes
4answers
593 views

C#: Abstract classes need to implement interfaces?

My test code in C#: namespace DSnA { public abstract class Test : IComparable { } } Results in the following compiler error: error CS0535: 'DSnA.Test' does not implement interface ...
9
votes
4answers
2k views

Copy constructor: deep copying an abstract class

Suppose I have the following (simplified case): class Color; class IColor { public: virtual Color getValue(const float u, const float v) const = 0; }; class Color : public IColor { public: ...
9
votes
10answers
895 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. ...
8
votes
2answers
168 views

dapper PropInfo Setter for inherited EntitySet from abstract class reference is null

I am trying to replace a nasty LINQ 2 SQL hit with some dapper queries to improve performanace. In doing so I have to weave a bunch of different objects together in order to create the big object ...
8
votes
2answers
272 views

Why doesn't an interface work but an abstract class does with a generic class constraint?

The code below shows a generic class with a type constraint (Pub<T>). The class has an event that it can raise allowing us to pass a message to subscribers. The constraint is that the message ...

1 2 3 4 5 16