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

ITDOne.java 321B

123456789101112131415161718
  1. interface I {
  2. }
  3. class C implements I {
  4. public void m() {
  5. foo(null,1,null);
  6. fooStatic(6,1,null);
  7. }
  8. }
  9. aspect X {
  10. void around(): call(* foo(..)) {}
  11. public void I.foo(String s,int i,String[] ss) {}
  12. void around(): call(* fooStatic(..)) {}
  13. public static void C.fooStatic(long l,int i,String[] ss) {}
  14. }