( Object o )
| 37 | // static method selection |
| 38 | |
| 39 | public static Class get_static( Object o ) { |
| 40 | System.out.println("selected object method"); |
| 41 | return o.getClass(); |
| 42 | } |
| 43 | public static Class get_static( String o ) { |
| 44 | System.out.println("selected string method"); |
| 45 | return o.getClass(); |