您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

StaticInnerAspect.java 267B

123456789101112131415
  1. import org.aspectj.testing.*;
  2. public class StaticInnerAspect {
  3. public static void main(String[] args) {
  4. Tester.check(true, "compiled");
  5. }
  6. }
  7. aspect Aspect {
  8. static class InnerClass {
  9. static aspect InnerAspect {
  10. }
  11. }
  12. }