如何将模板化的类实例作为模板参数传递给另一个模板?

时间:2017-08-08 04:34:35

标签: c++ templates microcontroller avr

我有一个类模板,我想将它的实例作为模板参数传递给anther类模板。如:

typedef Pin<(uint16_t)&PORTB,0> B0;
typedef Pin<(uint16_t)&PORTB,1> B1;

然后我想传递它们:

Indicator<B0,B1> Ind1;

我正在使用的pin类模板:

template <uint16_t tPort, uint8_t tBit>
class Pin
{
public:
    static constexpr uint16_t Port = tPort;
    static constexpr uint16_t DDR = tPort-1;
    static constexpr uint16_t PIn = tPort-2;
    static constexpr uint8_t Bit = tBit;

    static constexpr void  Toggle() 
    {
        *reinterpret_cast<uint16_t*>(Port) ^= (1<<Bit);
    }

    static constexpr void PullHigh() 
    {
        *reinterpret_cast<uint16_t*>(Port) |= (1<<Bit);
    }

    static constexpr void PullLow() 
    {
        *reinterpret_cast<uint16_t*>(Port) &= ~(1<<Bit);
    }

    static constexpr void SetOutput() 
    {
        *reinterpret_cast<uint16_t*>(DDR) &= ~(1<<Bit);
    }

    static constexpr void SetInput() 
    {
        *reinterpret_cast<uint16_t*>(DDR) |= (1<<Bit);
    }

    static constexpr void SetHighImpedance() 
    {
        *reinterpret_cast<uint16_t*>(Port) &= ~(1<<Bit);
        *reinterpret_cast<uint16_t*>(DDR) &= ~(1<<Bit);
    }

    static constexpr bool Read() 
    {
        return (*reinterpret_cast<uint16_t*>(PIn) & (1<<Bit));
    }
};

我已经能够将它们传递给模板函数。我假设模板模板参数可能是答案。但是还没能让它发挥作用......

1 个答案:

答案 0 :(得分:1)

非类型模板参数不限于整数。您似乎只传递uint16_t以将其重新解释为指针。相反,您可以将指针本身作为模板参数传递。

另请注意,reinterpret_cast上下文中不允许constexpr

在编译时传递指针看起来像这样:

template <uint16_t* tPort, uint8_t tBit>
class Pin
{
    // ...
};

它会像这样使用:

using B1 = Pin<&PORTB, 1>;

假设您要编写Indicator模板类,它将如下所示:

template<typename P1, typename P2>
struct Indicator {
    // ...
};

如果您担心强制P1P2成为引脚,可以通过制作类型特征并在其上声明来完成:

// Base case
template<typename>
struct is_pin : std::false_type {};

// Case where the first parameter is a pin
template <uint16_t* tPort, uint8_t tBit>
struct is_pin<Pin<tPort, tBit>> : std::true_type {};

然后,使用你的断言:

template<typename P1, typename P2>
struct Indicator {
    static_assert(is_pin<P1>::value && is_pin<P2>::value, "P1 and P2 must be pins");

    // ...
};

然后,要创建一个接收Indicator的函数,您可以执行以下操作:

// Pass type only, and use static members
template<typename IndicatorType>
void do_stuff() {
    IndicatorType::stuff();
}

// Pass an instance of the class
template<typename IndicatorType>
void do_stuff(IndicatorType indicator) {
    indicator.stuff();
}

这些函数的调用如下:

// Passing only the type
do_stuff<Indicator<B1, A1>>();

// Passing an instance
Indicator<B1, A1> indicator;

do_stuff(indicator);

这次我不担心IndicatorType不是指标。任何充当指示符的类都将被接受,如果不能以与指示符相同的方式使用,则会发生编译时错误。这将使指标的实施方式更加灵活。

另外,我建议您阅读更多或更深入的C ++模板教程。有时被忽视,它是C ++最重要和最复杂的特性之一。