簡體   English   中英

通過枚舉模板參數編譯時間類模板選擇

[英]Compile time class template selection by enum template parameter

我試圖根據給定的枚舉模板參數(store_type)選擇一個類模板。 現在我實例化一個使用它的類,但似乎總是試圖為這個類實例化basic_store。

enum store_type
{
    none,
    basic,
    lockless,
};

template<class T, store_type S = none, typename = void>
struct get_store_type
{
};

template<class T>
struct get_store_type<T, basic,
typename std::enable_if<!std::is_abstract<T>::value>::type>
{
    using store_type = typename basic_store<T>;
};

template<class T>
struct get_store_type<T, lockless>
{
    using store_type = typename lockless_store<T>;
};

template<typename T, store_type S>
class client
{
public:
    using my_store_type = typename get_store_type<T, S>::store_type;
}

//Tries to instantiate a basic store... which is not allowed.
client<SomeAbstractType, lockless> something;

您忘記了專業化中的第3個模板參數。

template<class T> struct get_store_type<T, lockless, void >
                                                     ^^^^

下面的代碼的輸出為1,23:

#include <iostream>

enum store_type { none, basic, lockless };

template<class T, store_type S = none, typename = void>
struct get_store_type
{ int a = 1; };

template<class T>
struct get_store_type<T, basic, typename std::enable_if<!std::is_abstract<T>::value>::type>
{ int b = 2; };

template<class T>
struct get_store_type<T, lockless, void > 
{ int c = 3; };

struct Any{};

int main( void )
{
    get_store_type<int> storeA;
    get_store_type<Any, basic> storeB;
    get_store_type<int, lockless> storeC;

    std::cout << storeA.a << std::endl;
    std::cout << storeB.b << std::endl;
    std::cout << storeC.c << std::endl;    

    return 0;
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM