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.

ReplaceNew.java 365B

12345678910111213141516171819
  1. package test3;
  2. public class ReplaceNew {
  3. public ReplaceNew() {}
  4. public ReplaceNew(String s) {}
  5. int i = 0;
  6. public int run() {
  7. i = 3;
  8. ReplaceNew s = new ReplaceNew();
  9. new ReplaceNew();
  10. return i;
  11. }
  12. static int j = 0;
  13. public int run2() {
  14. new ReplaceNew(new String("test"));
  15. return j;
  16. }
  17. }