重载
public class test1 {
public static void main(String[] args) {
//根据参数不同来决定调用的是哪个函数,
show(1);
show(1, 2);
}
public static void show(int a)
{
System.out.println("传递一个参数" + a);
}
public static void show(int a, int b)
{
System.out.println("传递两个参数" + a + b);
}
}