三種分類
designators (指示器)
主要是用來描述什么方式匹配java類的哪些方法
- 匹配方法
- exection() 比較復(fù)雜
- 匹配注解
- @target()
- @args()
- @within()
- @annotation()
- 匹配包/類型
- within()
- 匹配對象
- this()
- bean()
- target()
- 匹配參數(shù)
- args()
wildcards(通配符)
- * 匹配任意數(shù)量的字符
- .. 匹配指定類及其子類
- + 一般用于匹配任意數(shù)的子包或參數(shù)
operators (運算符)
- && 與運算符
- || 或運算符
- ! 非運算符