gpt4 book ai didi

c++ - 如何将 const 限定符与 decltype 一起使用?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:18:58 25 4
gpt4 key购买 nike

如何将 const 限定符与 decltype 一起用于 template-ed 函数?

当前 GCC rejects以下:

template <typename It>
bool process(It first , It last )
{

return std::all_of( first, last,
[]( const decltype(*first)& i )
// ^^^^^ without const it works fine
{
return i % 2 == 0;
}
) ;
}

在 lambda 中使用 i 作为 const 引用是否合法/可能?

最佳答案

const decltype(*first)&不起作用,因为 decltype(*first)int& , 但你希望它是 int .您可以使用 std::remove_reference解决这个问题(虽然它并没有真正使代码更清晰):const std::remove_reference<decltype(*first)>::type&

关于c++ - 如何将 const 限定符与 decltype 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24104333/

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