C#中 Queue 的简单应用例子

这篇博客介绍了C#中Queue数据结构的应用,通过一个简单的例子展示了如何使用Enqueue添加元素和Dequeue移除元素。文章强调了线程初始化和线程函数启用的技术要点,并概述了Queue的特性,包括其作为FIFO集合的优势、接受null值和重复元素的能力,以及关键的构造器和方法。
摘要由CSDN通过智能技术生成

本例子用于演示C#中队列的处理,当声明一个队列后,开启一个线程监控此队列,当有消息时就立刻传送出去。
using System;
using System.Collections;    //队列
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading;   //线程调用

namespace WindowsApplication3
{
    public partial class Form1 : Form
    {
        //该事例用于演示C#中队列的处理,当声明一个队列后,开启一个线程监控此队列,当有消息时就立刻传送出去


        Thread th = null;               //用于监控队列,当有消息时就立刻传送出去
        Queue queueMsg = new Queue();   //用于存消息的队列


        public Form1()
        {
            InitializeComponent();

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            th = new Thread(sendMsg);
            th.Start();     //开始监控队列中的消息,当有消息时就立刻传送出去
        }


        /// <summary>
        /// 从队列中发送消息
        /// </summary>
        private void sendMsg()
        {
            while (true)
            {
                if (queueMsg.Count > 0)                         //如果有消息就立刻传送出去
                {
                    string tmp = (string)queueMsg.Dequeue();    //出队
                    MessageBox.Show(tmp);
                    continue;
                }
                Thread.Sleep(1000);
            }
        }

        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            th.Abort(); //停止线程
        }

        private void button1_Click(object sender, EventArgs e)
        {
            //往队列填入3条消息
            for (int i = 1; i <= 3; i++)
            {
                queueMsg.Enqueue("消息" + i.ToString());
            }

        }

    }
}

运行结果是:点击“向队列填入3条消息”之后,依次弹出三个Messagebox。

    

以上示例,有两个技术要点需要掌握:

1、队列的写入方法Enqueue和移出方法Dequeue;

2、线程的初始化及线程函数的启用。


Queue的基础知识:

<
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值