# aop_test **Repository Path**: zhangshun/aop_test ## Basic Information - **Project Name**: aop_test - **Description**: 测试aop - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2018-08-13 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 大致总结 定义: ``` interface A { void a(); } interface B { void b(); } class Test implements A, B { @Override public void a() { this.b(); } @Override public void b() { System.out.println("bbb") } } ``` aop切入 Test类中方法a失败 ,方法b是可以的