Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516
  1. public class Clinit {
  2. public static void main(String []argv) {
  3. new Inner();
  4. }
  5. static class Inner {}
  6. }
  7. aspect X {
  8. before(): staticinitialization(Clinit.Inner) {
  9. System.out.println(thisJoinPointStaticPart.getSignature());
  10. }
  11. before(): staticinitialization(Clinit) {
  12. System.out.println(thisJoinPointStaticPart.getSignature());
  13. }
  14. }