(String[] args)
| 28 | } |
| 29 | |
| 30 | public static void main(String[] args) { |
| 31 | for (Method method : MyList.class.getDeclaredMethods()) { |
| 32 | System.out.println("name: " + method.getName() + ", return: " + method.getReturnType()); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | @Test |
| 37 | public void classpath() { |