这是我入学测试中的一道题,在这就不给你发答案了,讲明白思路得了
- //创建一个全局的target变量,也可以写到InvocationHandler中,但不能写到InvocationHandler的invoke方法内
复制代码- //用下面这个方法,其中handler中增加计算代码运算时间的执行代码
- //注意写invocationHandler匿名内部类时,要重写其方法,注意:字母别写错,有一个字母不同就是非重写,可以加@Override检查是否书写正确
- public static Object newProxyInstance(ClassLoader loader,
- Class<?>[] interfaces,
- InvocationHandler h)
- throws IllegalArgumentException
复制代码 |