| (1) | (since C++11) | ||
| (2) | (since C++11) | ||
(3) | ||||
| (since C++11) (until C++17) | |||
| (since C++17) | |||
(4) | ||||
| (since C++11) (until C++14) | |||
| (since C++14) | |||
| (5) | (since C++11) |
Constructs a new std::packaged_task
object.
1) Constructs a
std::packaged_task
object with no task and no shared state. 2) Constructs a
std::packaged_task
object with a shared state and a copy of the task, initialized with std::forward<F>(f)
. This constructor does not participate in overload resolution if std::decay<F>::type
is the same type as std::packaged_task<R(ArgTypes...)>
. 3) Constructs a
std::packaged_task
object with a shared state and a copy of the task, initialized with std::forward<F>(f)
. Uses the provided allocator to allocate memory necessary to store the task. This constructor does not participate in overload resolution if std::decay<F>::type
is the same type as std::packaged_task<R(ArgTypes...)>
. 4) The copy constructor is deleted,
std::packaged_task
is move-only. 5) Constructs a
std::packaged_task
with the shared state and task formerly owned by rhs
, leaving rhs
with no shared state and a moved-from task.Parameters
f | - | the callable target (function, member function, lambda-expression, functor) to execute |
a | - | the allocator to use when storing the task |
rhs | - | the std::packaged_task to move from |
Exceptions
1)
noexcept
specification: noexcept
2-3) Any exceptions thrown by copy/move constructor of
f
and possiblly std::bad_alloc
if the allocation fails. 4) (none)
5)
noexcept
specification: noexcept
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include <future> #include <iostream> #include <thread> int fib( int n) { if (n < 3) return 1; else return fib(n-1) + fib(n-2); } int main() { std::packaged_task< int ( int )> fib_task(&fib); std::cout << "starting task\n" ; auto result = fib_task.get_future(); std:: thread t(std::move(fib_task), 40); std::cout << "waiting for task to finish...\n" ; std::cout << result.get() << '\n' ; std::cout << "task complete\n" ; t.join(); } |
Output:
1 2 3 4 | starting task waiting for task to finish... 102334155 task complete |
Please login to continue.