ios 数组的set方法什么时候执行
1个回答
2016-07-09
展开全部
package com.knowhowinfo;import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.method;public class Test {
public static void main(String args[]) throws IllegalArgumentException, IllegalAccessException, InvocationTargetException, InstantiationException, SecurityException, NoSuchmethodException {
Class<A> c = A.class;
//返回所有的方法
method[] ms = c.getDeclaredmethods();
A a = c.newInstance();
for (method method : ms) {
//这里遍历一下 可有可以无 实验而已
System.out.println(method);
}
method m = c.getDeclaredmethod("set", int.class,String.class);
m.setAccessible(true);//因为写成private 所以这里必须设置
m.invoke(a, 5,"你好");
}
}
class A{
private void set(int i,String s){
System.out.println(i+","+s);
};
}
分享
import java.lang.reflect.method;public class Test {
public static void main(String args[]) throws IllegalArgumentException, IllegalAccessException, InvocationTargetException, InstantiationException, SecurityException, NoSuchmethodException {
Class<A> c = A.class;
//返回所有的方法
method[] ms = c.getDeclaredmethods();
A a = c.newInstance();
for (method method : ms) {
//这里遍历一下 可有可以无 实验而已
System.out.println(method);
}
method m = c.getDeclaredmethod("set", int.class,String.class);
m.setAccessible(true);//因为写成private 所以这里必须设置
m.invoke(a, 5,"你好");
}
}
class A{
private void set(int i,String s){
System.out.println(i+","+s);
};
}
分享
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询