You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
54行到61行
for (int i = 0; i < classes.length; i++) {
Class clzss = classes[i];
Class paramClzss = pararm[i].getClass();
if (!clzss.toString().equals(paramClzss.toString())) {
flag =false;
break;
}
}
这个意思就是说;
paramClzss的类型和clzss的类型必须一模一样,
paramClzss不能是clzss的实现类或继承类,
这个局限就太大了点吧,
这里比较toString之后的值我觉得非常不好!!!
Original issue reported on code.google.com by [email protected] on 12 Aug 2013 at 3:59
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 12 Aug 2013 at 3:59The text was updated successfully, but these errors were encountered: