void add(int a, int b) {}
void add(int a, int b, int c){}
c.add(a,b);
c.add(a,b,c);
정적으로 선언한 메서드는 안된다.
class Robot{
void make(){
System.out.println("MAKING..");
}
}
class MACHINE extends Robot{
@Override
void make(){
System.out.println("Robot MAKING Computer..");
}
}