在用Xposed进行hook时,遇到了以下这种方法
public void x(String str1, String str2, Object... obj){...}
正确写法:Object[].class
还有一种情况,那就是泛型参数,如下
A(List<class>,bool b);
正确写法:直接用List.class,然后用toString()方法装换即可
在用Xposed进行hook时,遇到了以下这种方法
public void x(String str1, String str2, Object... obj){...}
正确写法:Object[].class
还有一种情况,那就是泛型参数,如下
A(List<class>,bool b);
正确写法:直接用List.class,然后用toString()方法装换即可