public class Test23 {
//写一个ArrayList类的代理,实现和ArrayList类中完全相同的功能,并可以计算每个方法运行的时间。
public static void main(String[] args) {
// TODO Auto-generated method stub
final ArrayList<?> tager = new ArrayList();
List proxy =(List)Proxy.newProxyInstance(
List.class.getClassLoader(),
ArrayList.class.getInterfaces(),
new InvocationHandler() {