Constructor cannot be applied to given types?

前端 未结 3 1497
青春惊慌失措
青春惊慌失措 2021-01-13 15:50

I have the following Java code:

public class WeirdList {
    /** The empty sequence of integers. */
    /*ERROR LINE */ public static final WeirdList EMPTY =         


        
3条回答
  •  没有蜡笔的小新
    2021-01-13 16:51

    A subclass does not have to have any constructor with "the same number of parameters in the constructor as the superclass", but it does have to call some of its superclass' constructors from its own constructor.

    If the superclass has a no-arg constructor, it is called by default if an explicit call to a superclass constructor is omitted or if the subclass has no explicit constructor at all (as is your case), but since your superclass does not have a no-arg constructor, compilation fails.

    You could add something like this to your EmptyList:

    private EmptyList() {
        super(0, null);
    }
    

    It may also be a better idea to have an abstract superclass that both of your classes inherit from, instead, but that's a choice.

提交回复
热议问题