我有这段代码:
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.reflect.CodeSignature;
aspect SomeAspect {
void around(): call(void jy.run()) {
System.out.println(>> here I want access jy's final field a<<);
}
}
如何jy
在方面的代码中访问类的本地字段?