Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can an abstract class have a constructor?

If so, how it can be used and for what purposes?

share|improve this question

6 Answers

up vote 111 down vote accepted

Consider this:

abstract class Product { 
    int multiplyBy;
    public Product( int multiplyBy ) {
        this.multiplyBy = multiplyBy;
    }

    public int mutiply(int val) {
       return muliplyBy * val;
    }
}

class TimesTwo extends Product {
    public TimesTwo() {
        super(2);
    }
}

class TimesWhat extends Product {
    public TimesWhat(int what) {
        super(what);
    }
}

The superclass Product is abstract and has a constructor. The concrete class TimesTwo has a default constructor that just hardcodes the value 2. The concrete class TimesWhat has a constructor that allows the caller to specify the value.

NOTE: As there is no default (or no-arg) constructor in the parent abstract class the constructor used in subclasses must be specified.

Abstract constructors will frequently be used to enforce class constraints or invariants such as the minimum fields required to setup the class.

share|improve this answer
5  
Do you really want Product.Product() marked public? – Jonathon Reinhart Jun 19 '10 at 23:02
14  
@Jonathon: No real benefit is gained by adding complexity for the purposes of the answering the question asked. If the question was about scope, then, yes, it would make sense to contrast the three useful possibilities. – Michael Rutherfurd Jun 21 '10 at 0:50

You would define a constructor in an abstract class if you are in one of these situations:

  • you want to perform some initialization (to fields of the abstract class) before the instantiation of a subclass actually takes place
  • you have defined final fields in the abstract class but you did not initialize them in the declaration itself; in this case, you MUST have a constructor to initialize these fields

Note that:

  • you may define more than one constructor (with different arguments)
  • you can (should?) define all your constructors protected (making them public is pointless anyway)
  • your subclass constructor(s) can call one constructor of the abstract class; it may even have to call it (if there is no no-arg constructor in the abstract class)

In any case, don't forget that if you don't define a constructor, then the compiler will automatically generate one for you (this one is public, has no argument, and does nothing).

share|improve this answer

Yes it can have a constructor and it is defined and behaves just like any other class's constructor. Except that abstract classes can't be directly instantiated, only extended, so the use is therefore always from a subclass's constructor.

share|improve this answer

Consider this:

abstract class Product { 
    int value;
    public Product( int val ) {
        value= val;
    }
    abstract public int multiply();
}

class TimesTwo extends Product {
    public int mutiply() {
       return value * 2;
    }
}

The superclass is abstract and has a constructor.

share|improve this answer
Sorry for my innocence but public SomeThing() how can this be a constructor? I suppose constructor should have same name that of the class right? – cod3-monk-3y Nov 4 '08 at 2:58
@askgelal: Good read. Fixed it. Thanks! – S.Lott Nov 4 '08 at 3:07
I know that this is an old post but this code section will not compile. The subclass TimesTwo should implement the non default constructor. – Michael Liberman May 11 at 11:37

But you cannot create any object of class Product ... Which is the meaning of having a constructor for an abstract class?

Just to initialize/constraint the final values of the abstract class? Then you could overwrite it and forget the super initialization, i.e.:

class TimesTwo extends Product {
    public TimesTwo( int val ) {
        value= val + 2;
    }

}

or something even dangerous.

The worst thing is that you can do that ...
http://www.codestyle.org/java/faq-Abstract.shtml#abstract-constructor

share|improve this answer
Welcome to Stackoverflow! This question is from about three years ago, and has already received a satisfactory answer (notice the green checkbox near an answer). Also, you would want to improve the quality of your answer by avoiding unnecessary questions - you want to provide a direct, clear answer to the question. – Makoto Jun 3 '12 at 18:30

Yes! Abstract classes can have constructors!

Yes when we define a class to be an Abstract Class it cannot be instantiated but that does not mean an Abstract class cannot have a constructor. Each abstract class must have a concrete subclass which will implement the abstract methods of that abstract class.

When we create an object of any subclass all the constructors in the corresponding inheritance tree are invoked in top to bottom approach. Same case applies to abstract classes. Though we cannot create an object of abstract class, when we create an object of a class which is concrete and subclass of the abstract class, constructor of the abstract class is automatically invoked.Hence we can have a constructor in abstract classes.

Note : A non-abstract class cannot have an abstract methods but an abstract class can have a non-abstract method. Reason is similar to that of constructors, difference being instead of getting invoked automatically we can call super(). Also there is nothing like abstract constructor as it makes no sense at all.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.