本帖最后由 lucy198921 于 2013-3-24 14:01 编辑
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) 这个方法?
|