I am trying to call a superclass' constructor, with either an ArrayList(preferred) or array that already has information in it. I don't know what my syntactical mistake is, or if you can even do it?
I specifically want to insert "true" and "false" into either object. Just those two.
public class TrueFalseQuestion extends MultipleChoiceQuestion
{
Answer myAnswer;
StringPrompt myPrompt;
//I can create, but not initialize data up here, correct?
//Tried creating an ArrayList, but cannot insert the strings before calling constructor
public TrueFalseQuestion()
{
/* Want to call parent constructor with "true" and "false" in array or ArrayList already*/
super(new String["true", "false"]);
...
}
I have a feeling this is a facepalm-er but I just cant figure it out. I've tried various ways, but the pain is the fact the super constructor MUST be called first, thus not giving me a chance to initialize the data.