394041424344454647
Constructor<?> constructor = type.getConstructor(classParams.toArray(new Class[]{})); Object instance = constructor.newInstance(params); return instance; } catch (Exception e) { throw new InstantiationException(e); } }