摘要:
java动态代理必须的两个类与两个接口: 首先需要有一个接口(委托者需要实现该接口的方法)示例如下: public interface TheInterface{public void printStr(String str);} 然后当然需要一个委托者类来实现上述接口: public ... 阅读全文
摘要:
Project的build.gradle文件配置如下: // Top-level build file where you can add configuration options common to all sub-projects/modules.buildscript { rep... 阅读全文