> 백엔드 개발 > C++ > 본문

추가 구조 없이 Variadic 함수에서 유형 일관성을 적용하는 방법은 무엇입니까?

DDD
풀어 주다: 2024-11-13 12:59:02
원래의
892명이 탐색했습니다.

How to Enforce Type Consistency in Variadic Functions Without Additional Structures?

Enforcing Type Consistency in Variadic Functions Without Additional Structures

Variadic functions and variadic template functions allow us to pass a variable number of arguments to a function. However, ensuring that all arguments have the same type can be challenging. This question explores a solution for this problem without using arrays, vectors, or structs.

Variadic Function Approach

The proposed solution is to accept arguments by the variadic template and let type checking verify validity when they are converted. However, this approach requires us to have a known conversion path to the desired type. In this case, there must be a known way to convert an array of Maiden to dragon_list_t.

Example:

template<typename ...Items&gt;
dragon_list_t make_dragon_list(Items... maidens) {
    std::array<Maiden, sizeof...(Items)&gt; arr = {{ maidens ... }};
    // here be dragons
}
로그인 후 복사

SFINAE Approach

SFINAE (Substitution Failure Is Not An Error) can be used to enforce type consistency at the function interface level. This allows us to reject invalid arguments early in the overload resolution process.

Example:

template&lt;typename R, typename...&gt; struct fst { typedef R type; };

template&lt;typename ...Args&gt;
typename fst&lt;void, 
  typename enable_if&lt;
    is_convertible&lt;Args, ToType&gt;::value
  &gt;::type...
&gt;::type 
f(Args...);
로그인 후 복사

Conclusion

Both approaches provide a way to specify one type for all arguments passed to variadic functions without using additional data structures. The variadic function approach relies on known conversion paths, while the SFINAE approach allows for overload resolution to reject invalid arguments. The choice between these approaches depends on the requirements of the specific use case.

위 내용은 추가 구조 없이 Variadic 함수에서 유형 일관성을 적용하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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