
Java
文章平均质量分 87
yongchao_zhao
这个作者很懒,什么都没留下…
展开
-
annotationProcessor实战,了解ButterKinfe过程
注解的简介简介 Annotations, a form of metadata, provide data about a program that is not part of the program itself. Annotations have no direct effect on the operation of the code they annotate. 注释是元数据的一种形原创 2016-12-14 15:21:07 · 4407 阅读 · 0 评论 -
JAVA 动态代理
代理设计模式定义:为其他对象提供一种代理以控制对这个对象的访问。动态代理的使用动态代理类都必须要实现InvocationHandler接口,当我们在调用代理对象的方法的时候,这个方法的调用就会被转发到由InvocationHandler的invoke方法来进行调用。看一下InvocationHandler接口中的invoke方法。Object invoke(Object proxy, Meth原创 2016-12-06 17:43:36 · 377 阅读 · 0 评论