作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
如何将 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/
我是一名优秀的程序员,十分优秀!