Object-oriented programming uses the concepts of *interface inheritance* (which enables polymorhpism) and *behavioral inheritance* (which provides reuse).
146
votes
21answers
20k views
Prefer composition over inheritance?
Why prefer composition over inheritance? What trade-offs are there for each approach? When should you choose inheritance over composition?
110
votes
9answers
76k 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?
90
votes
2answers
51k views
Understanding Python super() and init methods
Trying to understand super(). From the looks of it, both child classes can be created just fine. Im curious as to what difference there actually is in this code:
class Base(object):
def ...
59
votes
3answers
26k views
Chain-calling parent constructors in python
Consider this - a base class A, class B inheriting from A, class C inheriting from B. What is a generic way to call a parent class constructor in a constructor? If this still sounds too vague, here's ...
54
votes
7answers
72k views
C++ superclass constructor calling rules
What are the C++ rules for calling the superclass constructor from a subclass one??
For example I know in Java, you must do it as the first line of the subclass constructor (and if you don't an ...
53
votes
17answers
2k views
Any good examples of inheriting from a concrete class?
Background:
As a Java programmer, I extensively inherit (rather: implement) from interfaces, and sometimes I design abstract base classes. However, I have never really felt the need to subclass a ...
44
votes
14answers
31k views
How to inherit constructors?
Imagine a base class with many constructors and a virtual method
public class Foo
{
...
public Foo() {...}
public Foo(int i) {...}
...
public virtual void SomethingElse() {...}
...
...
42
votes
4answers
8k views
prototype based vs. class based inheritance
In javascript, every object is at the same time instance and class. To do inheritance, you can use any object instance as a prototype.
In python, C++, etc.. there are classes, and instances, as ...
42
votes
9answers
16k views
Why can't I inherit static classes?
I have several classes that do not really need any state. From the organizational point of view, I would like to put them into hierarchy.
But it seems I can't declare inheritance for static classes.
...
42
votes
8answers
15k views
XML Serialization and Inherited Types
following on from my previous question I have been working on getting my object model to serialize to XML. But I have now run into a problem (quelle surprise!).
The problem I have is that I have a ...
41
votes
2answers
1k views
How do I inherit javascript functions ?
// Don't break the function prototype.
// pd - https://github.com/Raynos/pd
var proto = Object.create(Function.prototype, pd({
"prop": 42
}));
var f = function() { return "is a function"; };
...
40
votes
3answers
10k views
How to use 'super' in Python?
I was wondering if anyone could explain to me the difference between doing
class Child(SomeBaseClass):
def __init__(self):
super(Child, self).__init__()
and this
class ...
40
votes
36answers
5k views
Should C# include multiple inheritance?
I have come across numerous arguments against the inclusion of multiple inheritance in C#, some of which include (philosophical arguments aside):
Multiple inheritance is too complicated and often ...
37
votes
14answers
3k views
Use of .apply() with 'new' operator. Is this possible?
In JavaScript, I want to create an object instance (via the new operator), but pass an arbitrary number of arguments to the constructor. Is this possible?
What I want to do is something like this ...
37
votes
11answers
4k views
What’s the point of inheritance in Python?
I apologize if this question is long. This was part of a blog post I did some time ago, and a reader suggested me to post it on stackoverflow. I trimmed it a bit though.
Suppose you have the ...
36
votes
6answers
4k views
What does it mean that Javascript is a prototype based language?
One of the major advantages with Javascript is said to be that it is a prototype based language.
But what does it mean that Javascript is prototype based, and why is that an advantage?
34
votes
6answers
1k views
Why is an assignment to a base class valid, but an assignment to a derived class a compilation error?
This was an interview question. Consider the following:
struct A {};
struct B : A {};
A a;
B b;
a = b;
b = a;
Why does b = a; throw an error, while a = b; is perfectly fine?
33
votes
6answers
10k views
Why should I declare a virtual destructor for an abstract class in C++?
I know it is a good practice to declare virtual destructors for base classes in C++, but is it always important to declare virtual destructors even for abstract classes that function as interfaces? ...
33
votes
12answers
11k views
Inheritance vs. Aggregation
There are two schools of thought on how to best extend, enhance, and reuse code in an object-oriented system:
Inheritance: extend the functionality of a class by creating a subclass. Override ...
32
votes
5answers
7k views
What's wrong with overridable method calls in constructors?
I have a Wicket page class that sets the page title depending on the result of an abstract method.
public abstract class BasicPage extends WebPage {
public BasicPage() {
...
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 ...
31
votes
7answers
571 views
How is it that an enum derives from System.Enum and is an integer at the same time?
Edit: Comments at bottom. Also, this.
Here's what's kind of confusing me. My understanding is that if I have an enum like this...
enum Animal
{
Dog,
Cat
}
...what I've essentially done ...
31
votes
9answers
15k views
Java dynamic binding and method overriding
Yesterday I had a two-hour technical phone interview (which I passed, woohoo!), but I completely muffed up the following question regarding dynamic binding in Java. And it's doubly puzzling because I ...
28
votes
17answers
4k views
Disadvantage of OOP?
Typically I don't want to know the specifics of the cons of OOPs, but it felt kind of weird when I had an argument at an interview I attended recently. The question that was posted to me was to tell ...
28
votes
7answers
33k views
How to call a parent class's method from child class in python?
Stackers,
I apologize for this question in advance. It must be a FAQ, but I don't seem to be able to find the answer.
When creating a simple object hierarchy in python, I'd like to be able to ...
28
votes
10answers
18k views
At runtime, find all classes in a Java application that extend a base class
I want to do something like this:
List<Animal> animals = new ArrayList<Animal>();
for( Class c: list_of_all_classes_available_to_my_app() )
if (c is Anamal)
animals.add( new c() ...
26
votes
6answers
610 views
Unions as Base Class
The standard defines that Unions cannot be used as Base class, but is there any specific reasoning for this? As far as I understand Unions can have constructors, destructors, also member variables, ...
25
votes
1answer
990 views
Different inheritance types in the same schema
I'm using Doctrine 1.2 on a symfony project,
and I'm considering mixing concrete and column aggregation inheritance types in my schema:
column aggregation lets me query in a parent table and get both ...
24
votes
12answers
4k views
Why don't structs support inheritance?
I know that structs in .NET do not support inheritance, but its not exactly clear why they are limited in this way.
What technical reason prevents structs from inheriting from other structs?
23
votes
7answers
1k views
Why should one not derive from c++ std string class?
I wanted to ask about a specific point made in Effective C++.
It says:
A destructor should be made virtual if a class needs to act like a polymorphic class. It further adds that since ...
23
votes
6answers
8k views
Why is not possible to extend annotations in Java?
I don't understand why there is no inheritance in Java annotations, just as Java classes. I think it would be very useful.
For example: I want to know if a given annotation is a validator. With ...
23
votes
4answers
6k views
Javascript: prototypal inheritance
I am new to JavaScript OOP. Can you please explain me what the difference is between the following blocks of code. I tested and both blocks work. What's the best practice and why?
First block:
...
23
votes
7answers
7k views
Is there a way to instantiate objects from a string holding their class name?
I have a file: Base.h
class Base;
class DerivedA : public Base;
class DerivedB : public Base;
/*etc...*/
and another file: BaseFactory.h
#include "Base.h"
class BaseFactory
{
public:
...
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
10answers
7k views
Object Oriented Best Practices - Inheritance v Composition v Interfaces
I want to ask a question about how you would approach a simple object-oriented design problem. I have a few ideas of my own about what the best way of tackling this scenario, but I would be interested ...
23
votes
9answers
22k views
Multiple Inheritance in PHP
I'm looking for a good, clean way to go around the fact that PHP5 still doesn't support multiple inheritance. Here's the class hierarchy:
Message
-- TextMessage
-------- InvitationTextMessage
...
22
votes
5answers
511 views
How useful would Inheriting Constructors be in C++?
As I sit in the C++ Standards committee meetings, they are discussing the pros and cons of dropping Inheriting Constructors since no compiler vendor has implemented it yet (the sense being users ...
22
votes
3answers
559 views
Why can I access a derived private member function via a base class pointer to a derived object?
#include<iostream>
using namespace std;
class base
{
public:
virtual void add() {
cout << "hi";
}
};
class derived : public base
{
private:
void add() {
cout ...
22
votes
4answers
813 views
Why does this polymorphic C# code print what it does?
I was recently given the following piece of code as a sort-of puzzle to help understand Polymorphism and Inheritance in OOP - C#.
// No compiling!
public class A
{
public virtual string ...
22
votes
5answers
1k views
What are some good alternatives to multiple-inheritance in .NET?
I've run into a bit of a problem with my class hierarchy, in a WPF application. It's one of those issues where you have two inheritance trees merging together, and you can't find any logical way to ...
21
votes
8answers
2k views
Why there is no multiple inheritance in Java, but implementing multiple interfaces is allowed
Java doesn't allow multiple inheritance but it allows implementing multiple interfaces. Why?
20
votes
2answers
1k views
Doctrine 2 Inheritance Mapping with Association
NOTE : if what I want is not possible, a "not possible" answer will be accepted
In the Doctrine 2 documentation about inheritance mapping, it says there are 2 ways :
Single table inheritance (STI)
...
19
votes
13answers
797 views
Using inheritance and polymorphism to solve a common game problem
I have two classes; let's call them Ogre and Wizard. (All fields are public to make the example easier to type in.)
public class Ogre
{
int weight;
int height;
int axeLength;
}
public class ...
19
votes
6answers
2k views
Why collections classes in C# (like ArrayList) inherit from multiple interfaces if one of these interfaces inherits from the remaining?
When I press f12 on the ArrayList keyword to go to metadata generated from vs2008, I found that the generated class declaration as follows
public class ArrayList : IList, ICollection, IEnumerable, ...
19
votes
5answers
8k views
python properties and inheritance
I have a base class with a property which (the get method) I want to overwrite in the subclass. My first thought was something like:
class Foo(object):
def _get_age(self):
return 11
...
18
votes
5answers
3k views
Does subclasses inherit private fields?
This is an interview question.
Does subclasses inherit private
fields?
I answered "No", because we can't access them using "normal OOP way". But interviewer thinks, that their inherits, ...
18
votes
13answers
2k views
Why use inheritance at all?
I know the question has been discussed before, but it seems always under the assumption that inheritance is at least sometimes preferable to composition. I'd like to challenge that assumption in hopes ...
18
votes
5answers
562 views
Fluent interfaces and inheritance in C#
I'll show a problem by example. There is a base class with fluent interface:
class FluentPerson
{
private string _FirstName = String.Empty;
private string _LastName = String.Empty;
...
18
votes
8answers
5k views
What's the correct alternative to static method inheritance (C#)
I understand that static method inheritance is not supported in C#. I have also read a number of discussions (including here) in which developers claim a need for this functionality, to which the ...
18
votes
8answers
3k views
C#: Overriding return types
Is there way to override return types in C#? If so how, and if not why and what is a recommended way of doing it?
My case is that I have an interface with an abstract base class and descendants of ...