gpt4 book ai didi

c++ - 类无法访问其自己的私有(private)静态 constexpr 方法 - Clang 错误?

转载 作者:行者123 更新时间:2023-12-01 08:41:07 28 4
gpt4 key购买 nike

这段代码不能在 Clang (6,7,8,9,trunk) 中编译,但在 GCC (7.1, 8.1, 9.1) 中编译得很好:

template<class T> struct TypeHolder { using type = T; };

template<int i>
class Outer {
private:
template<class T>
static constexpr auto compute_type() {
if constexpr (i == 42) {
return TypeHolder<bool>{};
} else {
return TypeHolder<T>{};
}
}

public:
template<class T>
using TheType = typename decltype(Outer<i>::compute_type<T>())::type;
};

int main() {
Outer<42>::TheType<int> i;
}

Clang告诉我:
<source>:17:49: error: 'compute_type' is a private member of 'Outer<42>'

......当然是这样,但我正试图从同一个类中访问该成员。我不明白为什么它不应该在那里访问。我是否遇到了(并且应该提交)Clang 错误?

您可以在 Godbolt's compiler explorer 上玩弄代码.

最佳答案

这是core issue 1554 .该标准不清楚如何对别名模板执行访问检查(在定义的上下文中,或在使用的上下文中)。

当前的方向是检查定义的上下文,这将使您的代码格式正确。

关于c++ - 类无法访问其自己的私有(private)静态 constexpr 方法 - Clang 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59883060/

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