5

考虑一个类模板和辅助枚举类,定义如下:

enum class Color {Red, Green, Blue}
enum class ShowAxes {False, True}
enum class ShowLabels {False, True}

template< Color, ShowAxes, ShowLabels >
class A
{......};

问题是,如何重新定义 A 类,它独立于其论点的排列。我使用支持 C++11 的 Dev C++。

[编辑]

比如新版本的A应该支持

A< Color::Red, ShowAxes::True, ShowLabels::True >
A< Color::Red, ShowLabels::True, ShowAxes::True >
A< ShowAxes::True, Color::Red, ShowLabels::True >
A< ShowLabels::True, Color::Red, ShowAxes::True >
A< ShowLabels::True, Color::Red, ShowAxes::True >
A< ShowAxes::True, Color::Red, ShowLabels::True >

版本,并且它们都是相同的,即它们生成相同的类。

4

2 回答 2

5

您当前的界面无法使用非类型参数。

您可以采用类型参数并将值包装在 a 中std::integral_constant

template<class X, class Y, class Z>
class A { /* stuff */ };

// use as:
A<std::integral_constant<Color, Color::Red>,
  std::integral_constant<ShowAxes, ShowAxes::True>,
  std::integral_constant<ShowLabels, ShowLabels::True>> a;

这相当冗长,因此您可以考虑编写一个宏:

#define AS_IC(Value) std::integral_constant<decltype(Value), Value>

并重写为

A<AS_IC(Color::Red), AS_IC(ShowAxes::True), AS_IC(ShowLabels::True)> a;

从 s 列表中提取所需类型的值integral_constant很简单:

template<class Result, class...>
struct extract;

template<class Result, Result Value, class... Tail>
struct extract<Result, std::integral_constant<Result, Value>, Tail...> : std::integral_constant<Result, Value> {};

template<class Result, class Head, class... Tail>
struct extract<Result, Head, Tail...> : extract<Result, Tail...> {};

然后你可以做

// inside the definition of A
static constexpr Color col = extract<Color, X, Y, Z>::value;

演示

但是,这不会生成相同的类,但您可以创建一个A_impl行为A与非类型参数类似的类模板,并且包含实际实现,然后创建A一个别名模板:

template< Color, ShowAxes, ShowLabels >
class A_impl
{/* stuff */};

template<class X, class Y, class Z>
using A = A_impl<extract<Color, X, Y, Z>::value,
                 extract<ShowAxes, X, Y, Z>::value,
                 extract<ShowLabels, X, Y, Z>::value>;

现在给出

A<AS_IC(Color::Red), AS_IC(ShowAxes::True), AS_IC(ShowLabels::True)> a;
A<AS_IC(Color::Red), AS_IC(ShowLabels::True), AS_IC(ShowAxes::True)> b;

a并且b具有相同的类型。演示

或者,您也可以使用decltype和重载函数模板,但这需要为每个可能的类型顺序添加函数模板声明:

template< Color c, ShowAxes a, ShowLabels l>
A<c,a,l> A_of();

template< ShowAxes a, ShowLabels l, Color c>
A<c,a,l> A_of();

// etc.

decltype(A_of<Color::Red, ShowAxes::True, ShowLabels::True>()) a1;
decltype(A_of<ShowAxes::True, ShowLabels::True, Color::Red>()) a2;
于 2015-02-02T11:42:39.713 回答
0

也许通过使用std::is_same。然后你可以通过这种方式简化你的代码:

template <typename A, typename B, typename C>
class X
{
public:
    X() {
        static_assert(
            std::is_same<A, Color>::value ||
            std::is_same<B, Color>::value ||
            std::is_same<C, Color>::value,
            "nope");
        // other assertions here!
        // also, make sure your types are different ;)
    }
    X(A a, B b, C c) : X() {
        // your code here
    }
};

template <typename A, typename B, typename C>
X<A, B, C> make(A a, B b, C c) {
    // possible verifications here
    return X<A, B, C>(a, b, c);
}

int main() {
    auto a = make(Color::Red, ShowAxes::true, ShowLabels::True);
    return 0;
}

您可以验证所有类型 A、B 和 C。

很抱歉,但我没有看到任何其他解决方案。:/

于 2015-02-02T10:59:39.890 回答