并行编程 C# 4.0 Task.StartNew

发布于 2024-09-15 17:11:58 字数 630 浏览 3 评论 0原文

我正在尝试使用新的 .NET 4.0 任务并行库

inputList1 is List<CustomObject>

inputList2 is List<DateTime>

List<double> firstCall = GetDoubleListing(inputList1, inputList2); 
List<double> secondCall = GetAnotherListing(inputList3, inputList2); 

inputList2 处理两个独立的任务,这在两个调用中都很常见(它是一个只读列表)。

我尝试使用以下代码,但不断出现异常

Task[] tsk = {
    Task<List<double>>.Factory.StartNew(GetDoubleListing(inputList1, inputList2)),
    Task<List<double>>.Factory.StartNew(GetAnotherListing(inputList3, inputList2));
};

有人可以指导我如何传递参数以及如何启用任务并行库。

I am trying to process 2 independent tasks using the new .NET 4.0 Task Parallel Library

inputList1 is List<CustomObject>

inputList2 is List<DateTime>

List<double> firstCall = GetDoubleListing(inputList1, inputList2); 
List<double> secondCall = GetAnotherListing(inputList3, inputList2); 

inputList2 is common in both the calls ( it is a read only list ).

I tried to use the following code but kept getting exceptions

Task[] tsk = {
    Task<List<double>>.Factory.StartNew(GetDoubleListing(inputList1, inputList2)),
    Task<List<double>>.Factory.StartNew(GetAnotherListing(inputList3, inputList2));
};

Can someone guide me as to how to pass parameters and how to enable Task Parallel Library.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃扇骨 2024-09-22 17:11:58

看来您只想并行完成 GetDoubleListing()GetAnotherListing() 调用。 StartNew()< 的重载/code>需要代表。由于参数没有改变,您可以使用 lambda 进行调用,如下所示:

Task[] tsk =
{
    Task<List<double>>.Factory.StartNew(() => GetDoubleListing(inputList1, inputList2)),
    Task<List<double>>.Factory.StartNew(() => GetAnotherListing(inputList3, inputList2));
};

It appears you just want the GetDoubleListing() and GetAnotherListing() calls done in parallel. The overloads for StartNew() require delegates. As the parameters are not changing, you can make the calls using lambdas like this:

Task[] tsk =
{
    Task<List<double>>.Factory.StartNew(() => GetDoubleListing(inputList1, inputList2)),
    Task<List<double>>.Factory.StartNew(() => GetAnotherListing(inputList3, inputList2));
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文