zoukankan      html  css  js  c++  java
  • C# 生产者和消费者问题使用Monitor同步

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading;

    namespace ConsoleApplication1
    {
        public class Program
        {
            static void Main(string[] args)
            {
                SyncStack ss = new SyncStack();
                Producer p = new Producer(ss);
                Consumer c = new Consumer(ss);
                new Thread(p.run).Start();
                new Thread(c.run).Start();
            }
        }
        public class Cake
        {
            int id;
            public Cake(int id)
            {
                this.id = id;
            }
            public String toString()
            {
                return "Cake" + id;
            }
        }
        public class SyncStack
        {
            int index = 0;
            Cake[] arrWT = new Cake[4];
            public void push(Cake wt)
            {
                try
                {
                    Monitor.Enter(this);
                    while (index == arrWT.Length)
                    {
                        try
                        {

                            Console.WriteLine("已经生产满了!");
                            Monitor.Wait(this);
                        }
                        catch (Exception ex)
                        {
                            Console.WriteLine(ex.Message);
                        }
                    }
                    Monitor.Pulse(this);
                    arrWT[index] = wt;
                    index++;
                }
                finally
                {
                    Monitor.Exit(this);
                }
            }
            public Cake pop()
            {
                try
                {
                    Monitor.Enter(this);
                    while (index == 0)
                    {
                        try
                        {
                            Console.WriteLine("已经消费空了!");
                            Monitor.Wait(this);
                        }
                        catch (Exception ex)
                        {
                            Console.WriteLine(ex.Message);
                        }
                    }
                    Monitor.Pulse(this);
                    index--;
                    return arrWT[index];
                }
                finally
                {
                    Monitor.Exit(this);
                }
            }
        }
        public class Producer
        {

            private bool flag = true;
            private SyncStack m_syncStack = null;
            public Producer(SyncStack ss)
            {
                this.m_syncStack = ss;
            }
            public void run()
            {
                int i = 0;
                while (flag)
                {
                    Cake wt = new Cake(i);
                    i++;
                    m_syncStack.push(wt);
                    Console.WriteLine("生产了:" + wt.toString());
                }
            }
            public void Shutdown()
            {
                flag = false;
            }
        }
        public class Consumer
        {
            private bool flag = true;
            private SyncStack m_syncStack = null;
            public Consumer(SyncStack ss)
            {
                this.m_syncStack = ss;
            }
            public void run()
            {
                while (flag)
                {

                    Cake wt = m_syncStack.pop();
                    Console.WriteLine("消费了:" + wt.toString());
                    try
                    {
                        Thread.Sleep(2000);
                    }
                    catch (Exception ex)
                    {
                        Console.WriteLine(ex.Message);
                    }
                }
            }
            public void Shutdown()
            {
                flag = false;
            }
        }
    }

  • 相关阅读:
    C语言:运算结果保留两位小数
    FFmpeg: AVFrame中的data和extend_data的区别
    android studio: 配置版权信息(转)
    C++: C++11 成员函数作为pthread线程 (转)
    android studio: 取消行注释在第一列
    C 语言 int 读写是否需要加锁
    【转】浅析Linux中的零拷贝技术--简单形象
    【转】Linux 内核态与用户态--简明清晰的介绍
    delete如何找到多重继承对象的内存块起始地址
    【转】内存管理内幕mallco及free函数实现--简易内存分配器、内存池、GC技术
  • 原文地址:https://www.cnblogs.com/bjchaofan/p/3466997.html
Copyright © 2011-2022 走看看