首页 > 其他 > 详细

C# Parallel类的作用

时间:2014-05-10 08:59:22      阅读:632      评论:0      收藏:0      [点我收藏+]

System.Threading.Tasks.Parallel是能够以并行的方式迭代数据集合(实现了IEnumerable<T>的对象),它主要提供2个方法:For()和ForEach()

事例:

using System;
using System.Collections.Generic;
using System.Threading.Tasks;

namespace Net.ConsoleApplication
{
    public class Student
    {
        public string id { get; set; }
        public string name { get; set; }
    }
    public class ParallelDemo
    {
        private List<Student> list = new List<Student>();

        public ParallelDemo()
        {
            for (int i = 0; i < 1000;i++ )
            {
                Student s = new Student();
                s.id = i.ToString("00000");
                s.name = "编号" + s.id;
                list.Add(s);
            }
        }

        public void Do()
        {
            Parallel.ForEach(list, stu => {
                System.Console.WriteLine("id: " + stu.id + ",name: " + stu.name);
            });
        }

    }
}

 

C# Parallel类的作用,布布扣,bubuko.com

C# Parallel类的作用

原文:http://blog.csdn.net/y_f123/article/details/25454433

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!