Was ist der Unterschied zwischen packaged_task und async

Bei der Arbeit mit dem Thread-Modell von C ++ 11 ist mir das aufgefallen std::packaged_task<int(int,int)> task([](int a, int b) { return a + b; }); auto f = task.get_future(); task(2,3); std::cout << f.get() << '\n'; und auto f = std::async(std::launch::async, [](int a, int b) {...