Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Nine.java 399B

1234567891011
  1. public class Nine {
  2. public static void main(String []argv) {
  3. Integer[][] Is = new Integer[5][6];
  4. int[][] is = new int[2][4];
  5. }
  6. }
  7. aspect X {
  8. before(int a,int b): call(int[][].new(int,int)) && args(a,b) { System.err.println("advice running 1 ("+a+","+b+")");}
  9. before(int a,int b): call(Integer[][].new(int,int)) && args(a,b) { System.err.println("advice running 2 ("+a+","+b+")");}
  10. }