C++ 메서드 오버로딩

mohadang·2022년 12월 4일
0

C++

목록 보기
41/48
post-thumbnail

메서드 오버로딩

매개변수 목록을 제외하고는 모든 게 동일

// 문제 없이 사용 가능
void Print(int score);
void Print(int score1, int score2);

다만 반환형을 다르게 해서 오버로딩 할 수 없음.

void Print(int score);
int Print(int score); // ERROR
profile
mohadang

0개의 댓글