举下列子:public class Test
{
public static void main(String [] args){
Father f = new Father();
String s = f.Test(1,2);
int i = f.Test(1);
System.out.println(i);
System.out.println(s);
}
}
class Father{
public int Test(int i){
i = i;
return i;
}
public String Test(int i ,int j){
String s ="通过不同的方法可以返回不同类型的参数";
return s ;
}
}