摘要:
动态代理: 我们都知道,接口是不能被new的,只有类才能被new的。 我们来看看Person接口,和实现了Person接口的Student类,到底有什么区别: public class Test01 { public static void main(String[] args) { Class<P 阅读全文
摘要:
说说代理, 从静态代理,到动态代理,再到AOP的过程。 那什么是静态代理呢? 假如我们有一个需求:给原有的方法添加日志输出 假设我们有一个类Student,一个学生类,他有2个方法,唱歌、跳舞 public class Student { public void sing(){ System.out 阅读全文