/**
- Java方法的使用
- @author bo
*/
public class JavaMet {
public double show_length(int m,int n) {
return Math.sqrt(m*m+n*n);
}
public static void main(String[]args) {
double num;
num = new JavaMet().show_length(3, 4);
System.out.println("对角线长度是:"+num);
}
/**
- 方法的重载 同名方法 ,参数个数不同,或参数类型不同
- 方法的重写,重写从父类来的方法,覆盖了父类的方法,来执行自身的方法....
*/
class XX{
public void fun1() {
}
}
class BB extends XX{
// * 方法的重写,重写从父类来的方法,覆盖了父类的方法,来执行自身的方法....
public void fun1() {
}
}
//* 方法的重载 同名方法 ,参数个数不同,或参数类型不同
public static int add(int x,int y) {
return x + y;
}
public static int add(int x,int y,int z) {
return x + y + z;
}
public static double add(double x,double y) {
return x + y;
}
//* 方法的重载 同名方法 ,参数个数不同,或参数类型不同
}