/** * Returns the name of the class represented by this {@code Class}. For a * description of the format which is used, see the class definition of * {@link Class}. */ public String getName() { String result = name; return (result == null) ? (name = getNameNative()) : result; }返回此Class对象所代表的实体的名称,就是 Button