You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Code3.java 239B

123456789101112
  1. public class Code3 {
  2. public static void main(String []argv) {
  3. var x = "hello";
  4. System.out.println(x.getClass());
  5. }
  6. }
  7. aspect X {
  8. before(): call(* *.getClass()) && target(String) {
  9. System.out.println(thisJoinPointStaticPart);
  10. }
  11. }