作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
给定以下代码:
template<typename T>
constexpr remove_reference_t<decltype(T{}.x, bool{})> has_x() {return true;}
template<typename T, class... U>
constexpr bool has_x(U...) {return false;}
class A { public: int x; };
int main()
{
vector<int> vec;
A my_a{};
std::cout << has_x<decltype(my_a)>() << endl << has_x<decltype(vec)>() << endl;
if constexpr(has_x<decltype(vec)>())
{
cout << vec.x << endl;
}
else
{
cout << size(vec) << endl;
}
}
只有当我注释掉 cout << vec.x << endl
时它才会编译.这显然不会编译,但我的理解来自 if constexpr
那是:
If the value is
true
, then statement-false is discarded (if present), otherwise, statement-true is discarded
因此我认为应该丢弃“statement-true”,但事实并非如此。如果我在“statement-true”中放置一个在任何情况下都有效的语句,它就会起作用。但是我得到了一个可能无效的声明:
error:
class std::vector<int>
has no member namedx
我是不是做错了什么?
我是一名优秀的程序员,十分优秀!