gpt4 book ai didi

C++20 指定具有模板类型的初始值设定项

转载 作者:行者123 更新时间:2023-12-02 13:37:30 25 4
gpt4 key购买 nike

指定初始值设定项 (C++20) 如何与 CTAD 配合使用?

此代码在 gcc9.2 中工作正常,但在 clang8 中失败

template <typename int_t=int, typename float_t=float>
struct my_pair {
int_t first;
float_t second;
};

template<typename ... ts>
my_pair(ts...) -> my_pair<ts...>;

int main() {
my_pair x{.first = 20, .second = 20.f};
static_assert( std::is_same_v<decltype(x.first), int> );
static_assert( std::is_same_v<decltype(x.second), float> );
}

这应该有效吗?

查看示例 https://godbolt.org/z/KtNI43

最佳答案

是的,这应该是有效的。

CTAD 的工作方式是我们对一组合成的构造函数执行重载解析,以找出类模板参数是什么。从 C++17 开始,合成的构造函数集仅基于主模板的构造函数和推导指南(我正在更改模板参数名称,因为我发现它们非常困惑):

template <class T=int, class U=float>
struct my_pair {
T first;
U second;
};

// default constructor
template <class T=int, class U=float>
auto __f() -> my_pair<T, U>;

// copy candidate
template <class T=int, class U=float>
auto __f(my_pair<T, U>) -> my_pair<T, U>;

// deduction guide
template <class... T>
auto __f(T...) -> my_pair<T...>;

C++20 添加了新的聚合推导候选。对于 initializer-listdesignated-initializer-list 中的每个元素,我们选择聚合的相应元素并使用其类型作为新的候选元素。对于

my_pair x{.first = 20, .second = 20.f};

first的类型是 Tsecond 的类型是 U ,因此:

// aggregate deduction candidate
template <class T=int, class U=float>
auto __f(T, U) -> my_pair<T, U>;

现在,我将这四个候选者写为函数(因为我发现将它们视为函数更容易),但措辞将它们定义为假设类类型的构造函数。因此,当我们使用 {.first = 20, .second = 20.f} 执行重载解析时,如果你眯着眼睛看的话,它确实有效。

最后一个候选是最佳候选(只有聚合推导候选和推导指南可行,聚合推导候选更专业),所以我们最终得到 my_pair<int, float> .

<小时/>

完成 CTAD 后,我们现在重新开始并有效地开展工作

my_pair<int, float> x{.first = 20, .second = 20.f};

这当然有效。

关于C++20 指定具有模板类型的初始值设定项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57886451/

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