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.

Bean.java 281B

1234567891011
  1. package ppp;
  2. public class Bean {
  3. public void m() {
  4. Runnable r = new Runnable() { public void run() { System.out.println("class");}};
  5. r.run();
  6. }
  7. public void n() {
  8. Runnable r = new Runnable() { public void run() { System.out.println("class");}};
  9. r.run();
  10. }
  11. }