- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
给定以下代码:
template <typename U> U func1(std::function<U()> func2) {
return func2();
}
const int x = 1;
const int& result1 = func1<const int&>([&x]() { return x; });
// result1 = ??????? (random garbage)
const int& result2 = [&x]() { return x; }();
// result2 = 1
在推断返回值时,默认情况下 lambda 从 x 的类型中去除引用限定符似乎相当不方便,在这种情况下偷偷地导致对已破坏的临时对象的引用。为什么要以这种方式设计此语言功能?
为什么 result2 可以工作,而 result1 不能延长临时的生命周期?
最佳答案
template <typename U>
U func1(std::function<U()> func2) {
return func2();
}
当您使用 U = const int&
实例化此模板时,您将获得:
const int& func1(std::function<const int&()> func2) {
return func2();
}
然后,你传递一个 lambda [&x](){ return x; }
到 func1
。
事情是这样的:根据 8.1.5.4 Lambda 表达式,lambda 的返回类型推导为 int
:
If a lambda-expression does not include a lambda-declarator, it is as if the lambda-declarator were (). The lambda return type is auto, which is replaced by the type specified by the trailing-return-type if provided and/or deduced from return statements as described in 10.1.7.4.
意思是上面的func2
返回的是一个临时的。
根据 15.2.6.2 临时对象:
The lifetime of a temporary bound to the returned value in a function return statement (9.6.3) is not extended; the temporary is destroyed at the end of the full-expression in the return statement.
所以foo1
的返回值绑定(bind)到临时销毁一次
return func2();
完成。
在 result2
的情况下,lambda 仍然返回一个临时的 int
,但是临时的生命周期延长到 result2
的生命周期根据 15.2.6 临时对象,因为这种情况不属于标准本节中列出的任何异常(exception)情况。
关于c++ - 为什么 C++ 从推断的返回类型中剥离引用限定符,为什么生命周期扩展不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48102809/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!