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.

Parsing2.java 213B

1234567891011121314
  1. // Exploring synchronization
  2. public aspect Parsing2 {
  3. before(): unlock() { }
  4. public static void main(String[] args) {
  5. staticM();
  6. }
  7. public static void staticM() {
  8. // synchronized (String.class) {}
  9. }
  10. }