A Method
provides information about, and access to, a single method on a class or interface. The reflected method may be a class method or an instance method (including an abstract method).
一个提供关于方法的信息,和使用,单个方法在一个类或是接口中,
这反射方法也许成为一个类的方法或者一个实例方法(包含一个抽象方法)
A Method
permits(允许) widening(扩大) conversions(变化) to occur(发生) whenmatching(相同的) theactual(实在) parameters(参数) to invoke(调用) with the underlying(基础,底层的) method's
formal parameters, but it throws an IllegalArgumentException
if anarrowing(缩小) conversion would occur.
这个方法允许扩大转换发生当匹配实参数调用这低层的的方法的形参,
但它会抛出一个IllegalArgumentException
假如这个发生被缩小转换;