当我运行这个代码片段时,双方都没有选择。
if (Boolean.class.isAssignableFrom(boolean.class)) {
uLog.error("Boolean is => boolean");
}
if (boolean.class.isAssignableFrom(Boolean.class)) {
uLog.error("boolean is <= Boolean");
}
具体来说,我正在尝试使用反射测试参数类型:
Type[] pType = m.getGenericParameterTypes();
而且我无法弄清楚布尔参数的正确测试。