码迷,mamicode.com
首页 > 其他好文 > 详细

优雅的测量启动时间方法:AOP

时间:2021-01-18 10:52:21      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:启动   添加   int   实现   nts   位置   aspectj   classpath   org   

1、AOP介绍

  Aspect Oriented Programming,面向切面编程

  针对同一类问题的统一处理

  无侵入添加代码

1.1AspectJ使用(辅助AOP实现)

  classpath ‘com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.0‘

  implementation ‘org.aspect:aspectjrt:1.8.+‘

  apply plugin:‘android-aspectjx‘

1.2 Join Points

  程序运行时的执行点,可以作为切面的地方

    函数调用、执行

    获取、设置变量

    类初始化

1.3 PoindCut

  带条件的JoinPoints

1.4 Advice

  一种Hook,要插入代码的位置

    Before:PointCut 之前执行

    After:PointCut 之后执行

    Around:PointCut之前,之后分别执行

 

优雅的测量启动时间方法:AOP

标签:启动   添加   int   实现   nts   位置   aspectj   classpath   org   

原文地址:https://www.cnblogs.com/baizhou168/p/14287172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!