Dependency Injection and Class Inheritance

15,934

Solution 1

The correct approach is:

public class AnotherObject : MyObjectBase {
    public AnotherObject(IMyRequiredInterface interfaceImpl) : 
        base(interfaceImpl) {
    }
}

You specifically asked for an approach other than this approach. Why?

The goal is to meet the requirement of the base class without the descendant classes knowing anything about it.

That's generally the wrong thing to do. Why do you want to do it?

Update:

Based on your later comment, you should probably use (and configure your container to use) property injection instead of constructor injection. That will get you all of your requirements.

Solution 2

Err....the whole point of inheriting from MyObjectBase is that, as it were, you get the good and the bad, as far as the behaviour goes. If you can't create a MyObjectBase without an object implementing IMyRequiredInterface, you can't create a subclass without such an object either.

So what do you do when someone doesn't hand you that. Do you have a default?

It's quite reasonable for a subclass to instantiate something that implements IMyRequiredInterface, and pass that to the superclass constructor with a super(...) call. Can you do that? (Though, as I recall, you can get a bit hung up on this in Java, having to call super before doing anything else....)

Solution 3

There's a code smell here. If you inherit from a class that has a parameterless constructor it means that the author of this base class intended that it cannot function properly without supplying the necessary dependency. If you inherit from it and call a base method that required this dependency your code will probably fail if the dependency is not supplied. So if you really think that you should completely override this behavior you don't have to inherit from this base class, otherwise just copy the constructor in the inherited class.

Share:
15,934

Related videos on Youtube

nkirkes
Author by

nkirkes

Human, biped, literate.

Updated on May 30, 2020

Comments

  • nkirkes
    nkirkes almost 4 years

    I feel like this is something I should already know, but I'm just not firing on all engines today...

    I have a base class with a single ctor that takes an implementation of an interface as it's only parameter. I'm using a DI framework and have my component registrations all set up and working fine.

    When I inherit from this base class, unless I pass in a value to the base constructor, I have to define a parameterless ctor, which bypasses the DI.

    So right now I have:

    public class MyObjectBase
    {
        IMyRequiredInterface _InterfaceImpl;
        public MyObjectBase(IMyRequiredInterface interfaceImpl)
        {
            _InterfaceImpl = interfaceImpl;
        }
        ...
    }
    
    public class AnotherObject : MyObjectBase
    {
        public AnotherObject()
        {
        }
        ...
    }
    

    So, out of the gate this fails. I get errors when AnotherObject is instantiated indicating that there is no base class ctor that takes 0 parameters. Ok, I get that. But now I have a choice: either modify the descendant class ctor to take a similar parameter and pass that value on to the base ctor, or wire up a ctor chain in the base class that forces me to bypass DI and create a concrete implementation of the required interface and pass it in as part of the parameterless ctor declaration.

    The goal is to meet the requirement of the base class without the descendant classes knowing anything about it.

    Maybe I'm going about this all wrong, but it's bugging me. Any thoughts on a better way to handle this? I feel like I've got to be missing something simple...

  • cjs
    cjs almost 15 years
    It's not wrong if the subclass can reasonably supply an IMyRequiredInterface object for the superclass that would work for all instances of the subclass....
  • nkirkes
    nkirkes almost 15 years
    Code smells aside, the best solution for me would have been to use property injection. I opted to readdress the problem from a different perspective which allowed me to simply have a parameterless ctor in the base class. Thanks to everyone who answered.