我想从名称创建类对象,调用构造函数并创建新实例。但我不知道如何向构造函数发送参数。我的基类是:
public carDao(ConnectionSource connectionSource, Class<Car> dataClass) throws SQLException
{
super(connectionSource, dataClass);
}
以及我想做的事情:
Class myClass = Class.forName("carDao");
Constructor intConstructor= myClass.getConstructor();
Object o = intConstructor.newInstance();
我应该在 getConstructor() 中写什么?