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

Why can't Java classes have abstract fields like they can have abstract methods?

For example: I have two classes that extend the same abstract base class. These two classes each have a method that is identical except for a String constant, which happens to be an error message, within them. If fields could be abstract, I could make this constant abstract and pull the method up into the base class. Instead, I have to create an abstract method, called getErrMsg() in this case, that returns the String, override this method in the two derived classes, and then I can pull up the method (which now calls the abstract method).

Why couldn't I just make the field abstract to begin with? Could Java have been designed to allow this?

share|improve this question
2  
It sounds like you could have sidestepped this entire issue by making the field non-constant and simply supplying the value through the constructor, ending up with 2 instances of one class rather than 2 classes. – Nate Feb 6 '10 at 1:25
By making a fields abstract in a super class, you have specific that every sub class must have this field, so this is no different to a non-abstract field. – Peter Lawrey Feb 6 '10 at 9:24

5 Answers

up vote 21 down vote accepted

You can do what you described by having a final field in your abstract class that is initialised in its constructor (untested code):

class Base {

    final String errMsg;

    Base(String msg) {
        errMsg = msg;
    }

    abstract String doSomething();
}

class Sub extends Base {

    Sub() {
        super("Sub message");
    }

    String doSomething() {

        return errMsg + " from something";
    }
}

If your child class "forgets" to initialise the final through the super constructor the compiler will give a warning an error, just like when an abstract method is not implemented.

share|improve this answer
Haven't got an editor to try it here, but this was what I was going to post as well.. – Tim Feb 5 '10 at 23:17
3  
"the compiler will give a warning". Actually, the Child constructor would be trying to use a non-existent noargs constructor and that is a compilation error (not a warning). – Stephen C Feb 6 '10 at 0:15
And adding to @Stephen C's comment, "like when an abstract method is not implemented" is also an error, not a warning. – Laurence Gonsalves Feb 6 '10 at 1:58

I see no point in that. You can move the function to the abstract class and just override some protected field. I don't know if this works with constants but the effect is the same:

public abstract class Abstract {
    protected String errorMsg = "";

    public String getErrMsg() {
        return this.errorMsg;
    }
}

public class Foo extends Abstract {
    public Foo() {
       this.errorMsg = "Foo";
    }

}

public class Bar extends Abstract {
    public Bar() {
       this.errorMsg = "Bar";
    }
}

So your point is that you want to enforce the implementation/overriding/whatever of errorMsg in the subclasses? I thought you just wanted to have the method in the base class and didn't know how to deal with the field then.

share|improve this answer
That's exactly what I was in the middle of typing. There's only the quick and the dead around here... Except you misspelled "Foo" on the errorMsg. :) – Quick Joe Smith Feb 5 '10 at 22:57
Thanks for pointing out :) – Felix Kling Feb 5 '10 at 22:59
Well, I could do that of course. And I had thought of it. But why do I have to set a value in the base class when I know for a fact that I'm going to override that value in every derived class? Your argument could also be used to argue that there is no value in allowing abstract methods either. – Paul Reiners Feb 5 '10 at 22:59
1  
Well this way not every subclass has to override the value. I can also just define protected String errorMsg; which enforces somehow that I set the value in the subclasses. It is similar to those abstract classes that actually implement all the methods as placeholders so that developers don't have to implement every method although they don't need it. – Felix Kling Feb 5 '10 at 23:04
1  
Saying protected String errorMsg; does not enforce that you set the value in subclasses. – Laurence Gonsalves Feb 5 '10 at 23:08
show 6 more comments

Obviously it could have been designed to allow this, but under the covers it'd still have to do dynamic dispatch, and hence a method call. Java's design (at least in the early days) was, to some extent, an attempt to be minimalist. That is, the designers tried to avoid adding new features if they could be easily simulated by other features already in the language.

share|improve this answer
@Laurence - it is not obvious to me that abstract fields could have been included. Something like that is likely to have deep and fundamental impact on the type system, and on the language usability. (In the same way that multiple inheritance brings deep problems ... that can bite the unwary C++ programmer.) – Stephen C Feb 6 '10 at 2:45

I'm sure Java could have been designed like this. But it isn't.

share|improve this answer

Reading your title, I thought you were referring to abstract instance members; and I couldn't see much use for them. But abstract static members is another matter entirely.

I have often wished that I could declare a method like the following in Java:

public abstract class MyClass {

    public static abstract MyClass createInstance();

    // more stuff...

}

Basically, I would like to insist that concrete implementations of my parent class provide a static factory method with a specific signature. This would allow me to get a reference to a concrete class with Class.forName() and be certain that I could construct one in a convention of my choosing.

share|improve this answer
1  
Yea well ... this probably means that you are using reflection far to much!! – Stephen C Feb 6 '10 at 0:31
Sounds like a strange programming habit to me. Class.forName(..) smells like a design flaw. – whiskeysierra Feb 6 '10 at 1:59
These days we basically always use Spring DI to accomplish this sort of thing; but before that framework became known & popular, we would specify implementation classes in properties or XML files, then use Class.forName() to load them. – Drew Wills Feb 7 '10 at 4:33

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.