91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Queue<T>隊列

發布時間:2020-07-31 12:58:56 來源:網絡 閱讀:536 作者:1473348968 欄目:編程語言

=====================================Document.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    public class Document//文本類
    {
        //標題
        public string Title { get; private set; }
        //內容
        public string Content { get; private set; }
        public Document(string title, string content)
        {
            this.Title = title;
            this.Content = content;
        }
        public override string ToString()
        {
            return string.Format("標題:{0};內容:{1};",this.Title,this.Content);
        }
    }
}

=====================================DocumentManage.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace ConsoleApplication2
{
    public class DocumentManage//文本操作類
    {
        Queue<Document> doc = new Queue<Document>();
        //向隊列中添加元素
        public void AddDocument(Document d)
        {
            lock (this)//同步操作
                doc.Enqueue(d);
        }
        //讀取頭元素,并刪除
        public Document GetDocument()
        {
            lock (this)
                return doc.Dequeue();
        }
        //判斷隊列中有沒有元素
        public bool IsAvailableDocument
        {
            get {
                return doc.Count > 0;
            }
        }
    }
}

=====================================ProcessDocument.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
namespace ConsoleApplication2
{
    public class ProcessDocument//開啟線程讀取文檔中的元素
    {
        private DocumentManage dm;
        public ProcessDocument(DocumentManage d)
        {
            dm = d;
        }
        /// <summary>
        /// 開啟線程讀取文檔中的元素
        /// </summary>
        /// <param name="d"></param>
        public static void Start(DocumentManage d)
        {
            new Thread(new ProcessDocument(d).Run).Start();
        }
        private void Run()
        {
            while (true)
            {
                if (dm.IsAvailableDocument)//判斷隊列中有沒有元素
                {
                    Console.WriteLine(dm.GetDocument().ToString());
                }
            }
        }
    }
}

=====================================主程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            DocumentManage dm = new DocumentManage();
            ProcessDocument.Start(dm);//開啟線程讀取文檔
            for (int i = 0; i < 10000; i++)//向隊列中添加10000個元素
            {
                Document doc = new Document(i.ToString(), i.ToString());
                dm.AddDocument(doc);
                Console.WriteLine(doc.ToString() + ".....New");
            }
            
            Console.ReadKey();
        }
    }
}

 

Queue<T>隊列

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

陵川县| 株洲县| 武冈市| 赤城县| 铜梁县| 沿河| 蛟河市| 阿城市| 安徽省| 专栏| 凯里市| 丹江口市| 九江县| 社会| 成都市| 迁安市| 林周县| 宜阳县| 牙克石市| 佛冈县| 吉木萨尔县| 衢州市| 揭西县| 兴安盟| 洞头县| 定南县| 甘德县| 碌曲县| 乌鲁木齐市| 阿尔山市| 连云港市| 仙居县| 绍兴市| 西盟| 措勤县| 黄大仙区| 安国市| 恭城| 鄢陵县| 临湘市| 运城市|