moveable.getClass().getName()
Moveable moveable = (Moveable)Proxy.newProxyInstance(cls.getClassLoader(),cls.getInterfaces(),handler); System.out.println("产生动态代理实例的类名称 = [" + moveable.getClass().getName() + "]");
Proxy类的
newProxyInstance
方法,再反射回去 找类的名字,不应该是Proxy吗?为什么是$Proxy0?