问题
This blog post mentions the new Task APIs, including a new Task.CompletedTask property introduced in .NET 4.6.
Why was this added? How is this better than, say, Task.FromResult(whatever)
?
回答1:
Task.FromResult(whatever)
works for Task<TResult>
, but until 4.6 there was nothing for the nongeneric task. You could use FromResult
with a dummy value and implicitly cast it to Task
, but that somewhat obfuscates the intent (you're not really returning any asynchronous value) and allocates objects underneath (whereas CompletedTask
can be cached and shared between all callers).
It's not uncommon to see custom static completed tasks in current (4.5.2 and older) codebases, so in my opinion it makes sense to incorporate it to the framework itself.
来源:https://stackoverflow.com/questions/30493036/what-is-the-point-of-net-4-6s-task-completedtask