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.

Dyn.java 468B

12345678910111213141516171819202122
  1. package test4;
  2. public class Dyn {
  3. public static int test9(int i, String s) {
  4. return 9;
  5. }
  6. public int test8(int i, String s) {
  7. return 8;
  8. }
  9. public static Integer boot(String numberString)
  10. throws NoSuchMethodException, IllegalAccessException {
  11. return Integer.valueOf(numberString);
  12. }
  13. public Integer boot2(String numberString)
  14. throws NoSuchMethodException, IllegalAccessException {
  15. return Integer.valueOf(numberString);
  16. }
  17. }