vote up 7 vote down star
3
Class someInterface = Class.fromName("some.package.SomeInterface");

How do I now create a new class that implements someInterface?

I need to create a new class, and pass it to a function that needs a SomeInterface as an argument.

flag

Creating classes on the fly is not easy at all, I'm afraid. – mmyers Jul 4 at 19:44

3 Answers

vote up 9 vote down check

Creating something which pretends to implement an interface on the fly actually isn't too hard. You can use java.lang.reflect.Proxy after implementing InvocationHandler to handle any method calls.

Of course, you could actually generate a real class with a library like BCEL.

If this is for test purposes, you should look at mocking frameworks like jMock and EasyMock.

link|flag
1  
Whoa, neat! I wonder what else is in the java.lang.reflect package that I don't know about? – mmyers Jul 4 at 20:25
That's really cool, thanks! – Isaac Waller Jul 4 at 20:57
vote up 0 vote down

Actually, you have to use the class name in Class.fromName() method and cast to your interface type. See if the sample below helps.

public class Main {

    public static void main(String[] args) throws Exception {
    	Car ferrari = (Car) Class.forName("Mercedez").newInstance();
    	System.out.println(ferrari.getName());
    }
}

interface Car {
    String getName();
}

class Mercedez implements Car {

    @Override
    public String getName() {
    	return "Mercedez";
    }

}

class Ferrari implements Car {

    @Override
    public String getName() {
    	return "Ferrari";
    }

}
link|flag
vote up 1 vote down

If you want to go beyond interfaces, you might want to take a look at cglib and objenesis. Together, they will allow you to do some pretty powerful stuff, extending an abstract class and instantiating it. (jMock uses them for that purpose, for example.)

If you want to stick with interfaces, do what Jon Skeet said :).

link|flag

Your Answer

Get an OpenID
or

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