C에서 반환 값을 기반으로 함수 오버로드
매개 변수를 기반으로 함수를 오버로드하는 것은 C에서 일반적인 관행입니다. 그러나 반환 값을 기반으로 한 오버로드도 가능하므로 반환 값이 사용되는 방식에 따라 다르게 동작하는 함수를 만들 수 있습니다.
이를 달성하는 방법에는 여러 가지가 있습니다.
호출의 명시적 입력
함수에 전달된 리터럴에 대해 다른 유형을 사용합니다. 예를 들어, 사용법에 따라 정수 또는 문자열을 반환하는 함수의 경우:
int mul(int, int); std::string mul(char, int); int n = mul(6, 3); // Function called with int return value std::string s = mul('6', 3); // Function called with string return value
더미 포인터 접근 방식
각 함수에 더미 포인터 매개 변수를 추가하여 강제로 반환 값 유형에 따라 올바른 버전을 선택하는 컴파일러:
int mul(int*, int, int); std::string mul(std::string*, char, int); int n = mul((int*)NULL, 6, 3); // Function called with int return value std::string s = mul((std::string*)NULL, '6', 3); // Function called with string return value
템플릿 반환 값 전문화
템플릿 함수를 생성하고 특정 반환 유형에 맞게 특수화:
template<typename T> T mul(int, int) { // Generic function with a dummy member variable that will cause a compilation error // if not specialized const int k = 25; k = 36; } template<> int mul<int>(int, int) { return i * j; } template<> std::string mul<std::string>(int, int) { return std::string(j, static_cast<char>(i)); } int n = mul<int>(6, 3); // Function called with int return value std::string s = mul<std::string>('6', 3); // Function called with string return value
이 방법에서는 모호함을 피하기 위해 함수를 호출할 때 반환 유형을 명시적으로 지정해야 합니다.
여러 매개변수를 사용한 템플릿 전문화
To 동일한 반환 값 유형에 대해 서로 다른 매개변수를 기반으로 오버로드하려면 각 매개변수 조합에 대해 별도의 템플릿을 생성하세요.
template<typename T> T mul(int, int) { // Generic function with a dummy member variable that will cause a compilation error // if not specialized const int k = 25; k = 36; } template<> int mul<int>(int, int) { return i * j; } template<typename T> T mul(char, int) { // Generic function with a dummy member variable that will cause a compilation error // if not specialized const int k = 25; k = 36; } template<> std::string mul<std::string>(char, int) { return std::string(j, static_cast<char>(i)); } int n = mul<int>(6, 3); // n = 18 std::string s = mul<std::string>('6', 3); // s = "666"
이러한 기술을 사용하면 반환 값을 기반으로 함수를 효과적으로 오버로드할 수 있으므로 더 다양하고 유연하게 작업할 수 있습니다. 코드입니다.
위 내용은 C 함수는 반환 값에 따라 오버로드될 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!