getConstructor
public Constructor<T> getConstructor(Class<?>... parameterTypes)
The parameterTypes parameter is an array of Class objects that identify the constructor's formal parameter types(原始参数类型).
根据定义我们可以知道,Class<?>...parameterTypes 均是Class类型,所以应该是其字节码,而且反射中构造函数与原始构造函数是对应的,原来的构造函数中是int类型,那么就应该用基础类型int的字节码。