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

StaticIntroducedReferences.java 236B

1234567891011121314
  1. public class StaticIntroducedReferences {
  2. }
  3. abstract aspect SuperA {
  4. static void m() {}
  5. static int i = 0;
  6. }
  7. aspect A extends SuperA {
  8. public static void StaticIntroducedReferences.main(String[] args) {
  9. i++;
  10. m();
  11. }
  12. }