本帖最后由 马小龙 于 2012-9-4 13:50 编辑
- package com.itheima;
- public class Test3 {
-
- public void myMethod(String str) {
- System.err.println("string");
- }
-
- public void myMethod(Object obj) {
- System.err.println("object");
- }
-
- public static void main(String[] args) {
- Test3 t = new Test3();
- t.myMethod( null ); //传入参数null
- }
- }
复制代码 这里我在方法中传入null,为什么会找 public void myMethod(String str) 这个方法? |