package ch3;
// 方法重载
public class MyMath {
public int add(int a,int b){
return a+b;
}
public float add(float a,float b){
return a+b;
}
public double add(double a,double b){
return a+b;
}
public static void main(String[] args) {
// 定义一个MyMath对象
MyMath m = new MyMath();
// 求两个int数的和,并输出
System.out.println("3+5="+m.add(3, 5));
// 求两个float数的和,并输出
System.out.println("3.1415926+5.0="+m.add(3.1415926F, 5.0F));
// 求两个double数的和,并输出
System.out.println("3.1415926+5.0="+m.add(3.1415926, 5.0));
}
}

方法重载_方法重载