vote up 2 vote down star

I'd like for a subclass of a certain superclass with certain constructor parameters to load an XML file containing information that I'd then like to pass to the superconstructor. Is this impossible to achieve?

flag

75% accept rate
Is the entire purpose of subclass is just to be able to construct with a super, or does it indeed extend super in more ways than that? – Hemal Pandya Jan 14 '09 at 15:29

6 Answers

vote up 12 vote down check

How about using a factory method instead? Maybe something like:

private MyObject(ComplexData data)
{
    super(data);
}

public static MyObject createMyObject(String someParameter)
{
    ComplexData data = XMLParser.createData(someParameter);
    return new MyObject(data); 
}
link|flag
Shouldn't the factory method be static? – William Brendel Jan 14 '09 at 15:19
Whoops, yeah. Funny, you sound just like my compiler! – Outlaw Programmer Jan 14 '09 at 15:21
I'll try that. Thanks! – Lucas Lindström Jan 14 '09 at 15:23
vote up 0 vote down

I like mathews suggestion. A variation of this is to create objects that managed to preloaded data, and pass those into the constructor of the object.

I doing this in a project I'm working on for a client. Theres a bunch of configuration files that need to be loaded. I also have database and webservice connections that need to be established before dependent objects can be constructed.

It works great, its simple, and when someone else inherits this code it will be simple for them to follow the logic. This improves the value for the client.

link|flag
vote up 1 vote down

Impossible, no. Messy, potentially very.

I've needed to do this before and found that the easiest cleanest way and to handle it is to load the data before calling the constructor and then pass it as an argument.

link|flag
+1 unless its your classes job to parse the XML, which in this case it doesn't look like it is – MrWiggles Jan 14 '09 at 15:31
vote up 0 vote down

I like the factory answer, but you can sometimes also do something like:

public MyObject(String parm) {
    super(parseComplex(parm));
}

private static ComplexData parseComplex(String parm) {
    ....
    return new ComplexData(...);
}
link|flag
I feel using a factory is a bit of overkill here, if the purpose is just to be able to parse a ComplexData from XML (or anything else for that matter). So I think your approach is better. Do you actually prefer it over static method? Why? – Hemal Pandya Jan 14 '09 at 15:28
The factory method is more flexible, it can work if you need to produce multiple arguments for the super() call as the result of your processing. – Darron Jan 14 '09 at 16:51
vote up -4 vote down

In order to load the XML you need a valid subclass object, which requires a valid superclass object 'in it'. So what you want is impossible.

link|flag
"I'd like for a subclass to load" was the question – kineas Jan 14 '09 at 15:33
vote up 7 vote down

You can call a static method in the super() call, e.g.

public Subclass(String filename)
{
    super(loadFile(filename));
}

private static byte[] loadFile(String filename)
{
    // ...
}
link|flag

Your Answer

Get an OpenID
or

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