gpt4 book ai didi

c++ - 模板别名、模板特化和模板模板参数

转载 作者:可可西里 更新时间:2023-11-01 16:22:14 26 4
gpt4 key购买 nike

我想通过结合使用模板别名和模板特化来确定模板参数的基础模板。以下代码在 gcc 4.8、6.2.1 上编译良好,但在 clang 3.5、3.8 上编译失败。

#include <iostream>

template <typename T> struct First {};

template <typename T> struct Second {};

template <template <typename> class F, typename T> struct Foo {};

template <typename T> struct Foo<First, T>
{
void f() { std::cout << __PRETTY_FUNCTION__ << std::endl; }
};

template <typename T> struct Foo<Second, T>
{
void f() { std::cout << __PRETTY_FUNCTION__ << std::endl; }
};

template <typename F, typename T> struct Resolution {};

template <typename T> struct Resolution<First<T>, T>
{
template <typename P> using type = First<P>;
};

template <typename T> struct Resolution<Second<T>, T>
{
template <typename P> using type = Second<P>;
};

int main()
{
Foo<Resolution<First<int>, int>::type, float> my_foo;
my_foo.f(); // main.cpp:34:12: error: no member named 'f' in 'Foo<Resolution<First<int>, int>::type, float>'

return 0;
}

哪种行为符合标准?

最佳答案

回答:这是 C++ 标准核心语言中的已知错误,如 T.C.在评论中。 http://wg21.link/cwg1286

关于c++ - 模板别名、模板特化和模板模板参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39458568/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com