方法重载—求最大值
一般程序需要针对每一种求和的情况都定义一个方法,如果每个方法的名称都不相同,在调用时就很难分清哪种情况该调用哪个方法。为了解决这个问题,java允许在一个程序中定义多个名称相同的方法,但参数的类型或个数必须不同,这就是发法的重载。
话不多少上例子:
package test01;
import java.util.Scanner;
public class max {
public static void main(String[] args) {
int maxa = max(7,4,6);
double maxb = max (1.6, 41.4, 12.1);
int maxc = max(7,33);
System.out.println("max1= " + maxa);
System.out.println("max2= " + maxb);
System.out.println("max3 " + maxc);
}
public static int max (int a,int b,int c) {
//max就无需区分了
int m;
if(a>b)
m=a;
else m=b;
if(m<c)
m=c;
return m;}
public static double max (double a,double b, double c) {
double m;
if(a>b)
m=a;
else m=b;
if(m<c)
m=c;
return m;
}
public static int max (int a,int b) {
int c;
if(a>b)
c=a;
else c=b;
return c;
}
}
上面这段代码我使用了三个类型求最大值分别是三个int型,俩个double型,俩个int型。
结果就是这样: