摘要: Java实现动态代理,主要需要三个角色 1、被代理的接口以及代理接口的具体实现类 interface Interface { void sayHello(); void sayBye(); } class InterfaceImpl implements Interface { @Override 阅读全文
posted @ 2020-01-20 15:40 yytxdy 阅读(134) 评论(0) 推荐(0) 编辑