> 백엔드 개발 > C++ > C 함수는 반환 값에 따라 오버로드될 수 있나요?

C 함수는 반환 값에 따라 오버로드될 수 있나요?

DDD
풀어 주다: 2024-12-01 01:49:09
원래의
1003명이 탐색했습니다.

Can C   Functions Be Overloaded Based on Their Return Value?

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿