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

StaticClassesInInterfaces.java 353B

12345678910111213
  1. import org.aspectj.testing.Tester;
  2. import anotherPackage.*;
  3. public class StaticClassesInInterfaces {
  4. public static void main(String[] args) {
  5. new StaticClassesInInterfaces().realMain(args);
  6. }
  7. public void realMain(String[] args) {
  8. AnotherPackageInterface.Inner inner = null;
  9. Tester.check(true, "compiled!");
  10. }
  11. }