Is it possible to extend the life of a unique_ptr
by capturing it in a lambda and extending the life of the lambda?
I tried out but getting syntax errors with the a=move(a)
expression.
#include <cstdio>
#include <functional>
#include <memory>
#include <iostream>
using namespace std;
struct A {
A() { cout << "A()" << endl; }
~A() { cout << "~A()" << endl; }
};
int main() {
std::function<void ()> f;
{
std::unique_ptr<A> a(new A());
f = [a=move(a)] () mutable { return; };
}
return 0;
}
Well the problem with your code is
std::function
. It is not very move friendly as it needs its callable to be copy constructible/assignable which your lambda is not because of the use of a move only type,unique_ptr
in your example.There are many examples out there which can provide you with a move friendly version of
std::function
.I have come here with a quick, hacky, and probably error prone but "working on my machine" version of the same:
To try it out yourself: http://coliru.stacked-crooked.com/a/60e1be83753c0f3f