未评估上下文中的默认模板参数和 lambda:错误或功能?
Default template parameter & lambda in unevaluated context: bug or feature?
我们考虑使用完全相同的语法创建两种不同类型的目标。这可以使用 lambdas 轻松完成:
auto x = []{};
auto y = []{};
static_assert(!std::is_same_v<decltype(x), decltype(y)>);
但我们不使用 lambda,而是寻找另一种更优雅的语法。这里有一些测试。我们首先定义一些工具:
#include <iostream>
#include <type_traits>
#define macro object<decltype([]{})>
#define singleton object<decltype([]{})>
constexpr auto function() noexcept
{
return []{};
}
template <class T = decltype([]{})>
constexpr auto defaulted(T arg = {}) noexcept
{
return arg;
}
template <class T = decltype([]{})>
struct object
{
constexpr object() noexcept {}
};
template <class T>
struct ctad
{
template <class... Args>
constexpr ctad(const Args&...) noexcept {}
};
template <class... Args>
ctad(const Args&...) -> ctad<decltype([]{})>;
和以下变量:
// Lambdas
constexpr auto x0 = []{};
constexpr auto y0 = []{};
constexpr bool ok0 = !std::is_same_v<decltype(x0), decltype(y0)>;
// Function
constexpr auto x1 = function();
constexpr auto y1 = function();
constexpr bool ok1 = !std::is_same_v<decltype(x1), decltype(y1)>;
// Defaulted
constexpr auto x2 = defaulted();
constexpr auto y2 = defaulted();
constexpr bool ok2 = !std::is_same_v<decltype(x2), decltype(y2)>;
// Object
constexpr auto x3 = object();
constexpr auto y3 = object();
constexpr bool ok3 = !std::is_same_v<decltype(x3), decltype(y3)>;
// Ctad
constexpr auto x4 = ctad();
constexpr auto y4 = ctad();
constexpr bool ok4 = !std::is_same_v<decltype(x4), decltype(y4)>;
// Macro
constexpr auto x5 = macro();
constexpr auto y5 = macro();
constexpr bool ok5 = !std::is_same_v<decltype(x5), decltype(y5)>;
// Singleton
constexpr singleton x6;
constexpr singleton y6;
constexpr bool ok6 = !std::is_same_v<decltype(x6), decltype(y6)>;
和以下测试:
int main(int argc, char* argv[])
{
// Assertions
static_assert(ok0); // lambdas
//static_assert(ok1); // function
static_assert(ok2); // defaulted function
static_assert(ok3); // defaulted class
//static_assert(ok4); // CTAD
static_assert(ok5); // macro
static_assert(ok6); // singleton (macro also)
// Display
std::cout << ok1 << std::endl;
std::cout << ok2 << std::endl;
std::cout << ok3 << std::endl;
std::cout << ok4 << std::endl;
std::cout << ok5 << std::endl;
std::cout << ok6 << std::endl;
// Return
return 0;
}
这是使用当前主干版本的 GCC 编译的,带有选项 -std=c++2a
。在编译器资源管理器中查看结果 here。
ok0
、ok5
和 ok6
工作这一事实并不令人意外。然而,ok2
和 ok3
是 true
而 ok4
不是,这让我很惊讶。
- 有人可以解释
ok3
true
但 ok4
false
的规则吗?
- 它真的应该如何工作,还是这是一个关于实验性功能(未评估上下文中的 lambda)的编译器错误? (非常欢迎参考标准或 C++ 提案)
注意:我真的希望这是一个功能而不是一个错误,但只是因为它可以实现一些疯狂的想法
对于 ok2 函数参数类型 (T) 取决于指定的模板参数。
因为 ok3 ctor 不是模板。
对于 ok4,两个推导都依赖于相同的参数类型列表(在本例中为空),因此推导只发生一次。模板实例化和推导是不同的东西。虽然对于相同的参数类型列表推导只发生一次,但所有用法都会发生实例化。
查看此代码 (https://godbolt.org/z/ph1Wk2)。如果扣除的参数不同,则会发生单独的扣除。
Could someone provide an explanation of the rules that make ok3 true
but ok4 false?
ok3 是正确的,因为使用 lambdas 类型作为默认类型。
The type of a lambda-expression (which is also the type of the closure
object) is a unique, unnamed non-union class type,
因此,object
的默认模板类型,macro
和singltone
的模板参数类型在每次实例化后总是不同的。但是,对于函数 function
调用 returned lambda 是唯一的,它的类型也是唯一的。模板函数 ctad
只有参数模板,但 return 值是唯一的。如果重写函数为:
template <class... Args, class T = decltype([]{})>
ctad(const Args&...) -> ctad<T>;
在这种情况下 return 每次实例化后类型都会不同。
我们考虑使用完全相同的语法创建两种不同类型的目标。这可以使用 lambdas 轻松完成:
auto x = []{};
auto y = []{};
static_assert(!std::is_same_v<decltype(x), decltype(y)>);
但我们不使用 lambda,而是寻找另一种更优雅的语法。这里有一些测试。我们首先定义一些工具:
#include <iostream>
#include <type_traits>
#define macro object<decltype([]{})>
#define singleton object<decltype([]{})>
constexpr auto function() noexcept
{
return []{};
}
template <class T = decltype([]{})>
constexpr auto defaulted(T arg = {}) noexcept
{
return arg;
}
template <class T = decltype([]{})>
struct object
{
constexpr object() noexcept {}
};
template <class T>
struct ctad
{
template <class... Args>
constexpr ctad(const Args&...) noexcept {}
};
template <class... Args>
ctad(const Args&...) -> ctad<decltype([]{})>;
和以下变量:
// Lambdas
constexpr auto x0 = []{};
constexpr auto y0 = []{};
constexpr bool ok0 = !std::is_same_v<decltype(x0), decltype(y0)>;
// Function
constexpr auto x1 = function();
constexpr auto y1 = function();
constexpr bool ok1 = !std::is_same_v<decltype(x1), decltype(y1)>;
// Defaulted
constexpr auto x2 = defaulted();
constexpr auto y2 = defaulted();
constexpr bool ok2 = !std::is_same_v<decltype(x2), decltype(y2)>;
// Object
constexpr auto x3 = object();
constexpr auto y3 = object();
constexpr bool ok3 = !std::is_same_v<decltype(x3), decltype(y3)>;
// Ctad
constexpr auto x4 = ctad();
constexpr auto y4 = ctad();
constexpr bool ok4 = !std::is_same_v<decltype(x4), decltype(y4)>;
// Macro
constexpr auto x5 = macro();
constexpr auto y5 = macro();
constexpr bool ok5 = !std::is_same_v<decltype(x5), decltype(y5)>;
// Singleton
constexpr singleton x6;
constexpr singleton y6;
constexpr bool ok6 = !std::is_same_v<decltype(x6), decltype(y6)>;
和以下测试:
int main(int argc, char* argv[])
{
// Assertions
static_assert(ok0); // lambdas
//static_assert(ok1); // function
static_assert(ok2); // defaulted function
static_assert(ok3); // defaulted class
//static_assert(ok4); // CTAD
static_assert(ok5); // macro
static_assert(ok6); // singleton (macro also)
// Display
std::cout << ok1 << std::endl;
std::cout << ok2 << std::endl;
std::cout << ok3 << std::endl;
std::cout << ok4 << std::endl;
std::cout << ok5 << std::endl;
std::cout << ok6 << std::endl;
// Return
return 0;
}
这是使用当前主干版本的 GCC 编译的,带有选项 -std=c++2a
。在编译器资源管理器中查看结果 here。
ok0
、ok5
和 ok6
工作这一事实并不令人意外。然而,ok2
和 ok3
是 true
而 ok4
不是,这让我很惊讶。
- 有人可以解释
ok3
true
但ok4
false
的规则吗? - 它真的应该如何工作,还是这是一个关于实验性功能(未评估上下文中的 lambda)的编译器错误? (非常欢迎参考标准或 C++ 提案)
注意:我真的希望这是一个功能而不是一个错误,但只是因为它可以实现一些疯狂的想法
对于 ok2 函数参数类型 (T) 取决于指定的模板参数。 因为 ok3 ctor 不是模板。
对于 ok4,两个推导都依赖于相同的参数类型列表(在本例中为空),因此推导只发生一次。模板实例化和推导是不同的东西。虽然对于相同的参数类型列表推导只发生一次,但所有用法都会发生实例化。
查看此代码 (https://godbolt.org/z/ph1Wk2)。如果扣除的参数不同,则会发生单独的扣除。
Could someone provide an explanation of the rules that make ok3 true but ok4 false?
ok3 是正确的,因为使用 lambdas 类型作为默认类型。
The type of a lambda-expression (which is also the type of the closure object) is a unique, unnamed non-union class type,
因此,object
的默认模板类型,macro
和singltone
的模板参数类型在每次实例化后总是不同的。但是,对于函数 function
调用 returned lambda 是唯一的,它的类型也是唯一的。模板函数 ctad
只有参数模板,但 return 值是唯一的。如果重写函数为:
template <class... Args, class T = decltype([]{})>
ctad(const Args&...) -> ctad<T>;
在这种情况下 return 每次实例化后类型都会不同。