public class OverloadingTest {//메소드 오버로딩
	public void make(int a){
		System.out.println("int 형 데이터 : "+a);
	}
	public void make(double b){
		System.out.println("double 형 데이터 : "+b);
	}
	//int 를 double로 바꾸니 충돌이 일어나지 않는다(메소드 오버로딩)
	
	public static void main(String[] args){
		OverloadingTest ov = new OverloadingTest();
		ov.make(2.0);
		ov.make(10);
		//기능이 같기 때문에 알아서 자신이 필요한곳에 들어간다
		//기능이 같을 경우만 메소드 오버로딩을 쓴다
	}
}

double 형 데이터 : 2.0

int 형 데이터 : 10


+ Recent posts