目前在C++
这两种情况下都不可能,编译器抱怨它需要一个表达式。
这对我来说似乎微不足道,如果您正在构建一个具有可变数量类型的元组对象,如何检查所有这些类型是否都是nothrow
default
/ move
/ copy
constructible
?
这对我来说似乎是一个令人讨厌的语言缺陷。
有什么选择吗?
#include <iostream>
#include <type_traits>
template <typename... TYPES>
struct Test1 {
Test1()
noexcept(... && (std::is_nothrow_default_constructible_v<TYPES>)) {}
};
template <typename... TYPES>
struct Test2 {
Test2()
noexcept(std::conjunction_v<std::is_nothrow_default_constructible<TYPES>, ...>) {}
};
int
main() {
Test1<int, int, int> test1;
Test2<int, int, int> test2;
return 0;
}