Hello,

My problem is that I have a class, which needs to extend either one of two classes - the one it should extend depends on some value that is determined during runtime.

I understand that there isn't a concept of having an if (this condition) extend thisclass else extend thisclass
but the same effect needs to be achieved.

How can this be done?

eh? you can't extend more then one class directly, besides: extending a class is in the (compiled) code, so you can't do that "on the fly".
what you could do (I guess) is something like this:

interface MyMarker{}

public class MyFirstClass extends Parent1 implements MyMarker{

}

public class MySecClass extends Parent2 implements MyMarker{

}

public class Bus{

public static void main(String[] args){
  MyMarker obj;
  if ( args[0].equals("Parent1")
    obj = new MyFirstClass();
  else if ( args[0].equals("Parent2")
    obj = new MySecClass();
}
}

and keep the methods that both should have in the MyMarker interface, to avoid problems
not saying this is the only (nor the best, for that matter) sollution, but it's one way to think.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.