麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 學院 > 開發設計 > 正文

C++ std::enable_if解析

2019-11-14 09:27:23
字體:
來源:轉載
供稿:網友

引言

今日在閱讀LLVM相關源碼時(如下所示),遇到了enable_if<>這個概念,以前從沒有遇到過,這里做個小記。

/*----------llvm/include/llvm/ADT/Hashing.h------------*//// /brief Compute a hash_code for any integer value.////// Note that this function is intended to compute the same hash_code for/// a particular value without regard to the PRe-promotion type. This is in/// contrast to hash_combine which may produce different hash_codes for/// differing argument types even if they would implicit promote to a common/// type without changing the value.template <typename T>typename std::enable_if<is_integral_or_enum<T>::value, hash_code>::typehash_value(T value);123456789101112123456789101112

enable_if 的主要作用就是當某個 condition 成立時,enable_if可以提供某種類型。enable_if在標準庫中通過結構體模板實現的,聲明如下:

template<bool Cond, class T = void> struct enable_if;11

英文解釋如下:

Enable type if the condition is met. The type T is enabled as member type enable_if::type if Cond is true. Otherwise, enable_if::type is not defined.

但是當 condition 不滿足的時候,enable_if<>::type 就是未定義的,當用到模板相關的場景時,只會 instantiate fail,并不會編譯錯誤,這時很重要的一點。為了理解 std::enable_if<> 的實現,我們先來了解一下 SFINAE。


SFINAE

SFINAE 是C++ 的一種語言屬性,具體內容就是”從一組重載函數中刪除模板實例化無效的函數”。

Prune functions that do not yield valid template instantiations from a set of overload functions.

SFINAE 的的全稱是 Substitution Failure Is Not An Error。

SFINAE 應用最為廣泛的場景是C++中的 std::enable_if,這里有完整的英文描述:

In the process of template argument deduction, a C++ compiler attempts to instantiate signatures of a number of candidate overloaded functions to make sure that exactly one overloaded function is available as a perfect match for a given function call.

從上面的描述中我們可以看到,在對一個函數調用進行模板推導時,編譯器會嘗試推導所有的候選函數(重載函數,模板,但是普通函數的優先級要高),以確保得到一個最完美的匹配。

If an invalid argument or return type is formed during the instantiation of a function template, the instantiation is removed from the overload resolution set instead of causing a compilation error. As long as there is one and only one function to which the call can be dispatched, the compiler issues no errors.

也就是說在推導的過程中,如果出現了無效的模板參數,則會將該候選函數從重載決議集合中刪除,只要最終得到了一個 perfect match ,編譯就不會報錯。

如下代碼所示:

long multiply(int i, int j) { return i * j; }template <class T>typename T::multiplication_result multiply(T t1, T t2){    return t1 * t2;}int main(void){    multiply(4, 5);}123456789101112123456789101112

main 函數調用 multiply 會使編譯器會盡可能去匹配所有候選函數,雖然第一個 multiply 函數明顯是較優的匹配,但是為了得到一個最精確的匹配,編譯器依然會嘗試去匹配剩下的候選函數,此時就會去推導 第二個multiply函數,中間在參數推導的過程中出現了一個無效的類型 int::multiplication_result ,但是因為 SFINAE 原則并不會報錯。


std::enable_if<> 的實現

前面我們在介紹 std::enable_if 的時候提到,如果 condition 不滿足的話,會生成一個無效的類型,此處由于SFINAE 機制的存在,只要 call 存在一個匹配的話,就不會報錯(只是簡單的丟棄該函數)。

std::enable_if<>的實現機制如下代碼所示:

template<bool Cond, typename T = void> struct enable_if {};template<typename T> struct enable_if<true, T> { typedef T type; };123123

從上面的代碼可以看到

在 condition 為真的時候,由于偏特化機制,第二個結構體模板明顯是一個更好的匹配,所以 std::enable_if<>::type 就是有效的。

當 condition 為假的時候,只有第一個結構體模板能夠匹配,所以std::enable_if<>::type 是無效的,會被丟棄,編譯器會報錯:error: no type named ‘type’ in ‘struct std::enable_if<false, bool>。

Note: 下面是Visual Studio 2013的實現:

    // TEMPLATE CLASS enable_iftemplate<bool _Test,    class _Ty = void>    struct enable_if    {   // type is undefined for assumed !_Test    };template<class _Ty>    struct enable_if<true, _Ty>    {   // type is _Ty for _Test    typedef _Ty type;    };123456789101112123456789101112

std::enable_if<> 使用及使用

std::enable_if<> 的使用原型如下所示:

template <bool Cond, class T = void> struct enable_if;11Cond, A compile-time constant of type boolT, A type.

使用 enable_if 的時候,對參數有這兩方面的限制。

member typedefinition
typeT (defined only if Cond is true)

該例子來自于 這里:

// enable_if example: two ways of using enable_if#include <iostream>#include <type_traits>// 1. the return type (bool) is only valid if T is an integral type:template <class T>typename std::enable_if<std::is_integral<T>::value,bool>::type  is_odd (T i) {return bool(i%2);}// 2. the second template argument is only valid if T is an integral type:template < class T,           class = typename std::enable_if<std::is_integral<T>::value>::type>bool is_even (T i) {return !bool(i%2);}int main() {  short int i = 1;    // code does not compile if type of i is not integral  std::cout << std::boolalpha;  std::cout << "i is odd: " << is_odd(i) << std::endl;  std::cout << "i is even: " << is_even(i) << std::endl;  return 0;}123456789101112131415161718192021222324123456789101112131415161718192021222324頂
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 免费看一级毛片欧美 | 高清做爰免费无遮网站挡 | 玖玖视频精品 | 成人午夜视频免费 | 日本欧美一区二区三区视频麻豆 | 久草在线免费资源站 | 男女羞羞视频 | 日本综合久久 | 久草视频福利在线观看 | 美女露100%无遮挡 | 久久精品欧美一区二区三区不卡 | 视频一区二区三区在线播放 | 日本精品久久久久 | 黄色一级视频 | 91精品国产九九九久久久亚洲 | 99精品视频99 | 黄色大片大毛片 | 中国洗澡偷拍在线播放 | 欧美性猛交一区二区三区精品 | 欧美成人免费在线视频 | 毛片免费看的 | av在线播放亚洲 | www.精品一区 | 综合在线一区 | 免费观看国产视频 | 久久精品伊人网 | 中文字幕一区久久 | 一级做受毛片免费大片 | 精品亚洲夜色av98在线观看 | 日韩毛片一区二区三区 | 成人免费观看在线视频 | 久久久久久中文字幕 | 欧美激情第一区 | 一级α片免费看刺激高潮视频 | 国产精品视频专区 | 曰韩精品 | 在线成人免费观看www | 亚洲网站在线播放 | 日韩美女电影 | 欧美精品1区 | 国产毛片网站 |