当前位置:
首页 >
C#中一道关于多线程的基础练习题——模拟仓库存销过程
发布时间:2025/7/14
73
豆豆
生活随笔
收集整理的这篇文章主要介绍了
C#中一道关于多线程的基础练习题——模拟仓库存销过程
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
题目:模拟生产、入库、销售(50分)
假设某企业自产、自存、自销,需要将工厂生产的各类产品不定时的运到仓库,与此同时,需要将仓库中的货物运往超市和商场中进行销售,请编写一个程序模拟此过程(主要是存取这个过程)。
评分标准:
1. 仓库的存量是固定的,可以假设为一个常量,比如10。(5分)
2. 仓库满的时候,不能再向仓库中存货。(10分)
3. 仓库空的时候,不能卖出货物。(10分)
4. 存货和取货是同时进行的,不要出现先存满再取完货再存满再取完的效果或者存一个取一个再存再取这样的效果。(15分)
5. 思路清晰,输出工整,编码规范,有正确的异常处理。(10分)
用多线程模拟仓库存储和销售的过程代码如下:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Threading; using System.IO;namespace MultiThreadStore {class Program{//入口static void Main(string[] args){Goods goods = new Goods();Thread storeGoods = new Thread(new ParameterizedThreadStart(store));Thread sellGoods = new Thread(new ParameterizedThreadStart(sell));storeGoods.Start(goods);sellGoods.Start(goods);Console.ReadLine();}//存货方法private static void store(object obj){bool storeFlag = true;Random random = new Random();while (storeFlag){try{Goods goods = obj as Goods;if (goods.Num < goods.MaxNum){goods.Num++;Console.WriteLine("Store a goods, " + goods.Num + " goods left!");}else {Console.WriteLine("The store is full now.");}Thread.Sleep(random.Next(500, 1000));}catch (Exception ex){WriteLog(ex);storeFlag = false;}}}//卖货方法public static void sell(object obj) {bool sellFlag = true;Random random = new Random();while (sellFlag){try{Goods goods = obj as Goods;if (goods.Num > 0){goods.Num--;Console.WriteLine("Sell a goods, " + goods.Num + " goods left!");}else {Console.WriteLine("There are no goods now.");}Thread.Sleep(random.Next(1000, 4000));}catch (Exception ex){WriteLog(ex);sellFlag = false;}}}//打log方法private static void WriteLog(Exception ex){string logUrl = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory) + "\\MuliThreadStorelog.txt";if (File.Exists(@logUrl)){using (FileStream fs = new FileStream(logUrl, FileMode.Append)){using (StreamWriter sw = new StreamWriter(fs, Encoding.Default)){try{sw.Write(ex);}catch (Exception ex1){WriteLog(ex1);}finally{sw.Close();fs.Close();}}}}else{using (FileStream fs = new FileStream(logUrl, FileMode.CreateNew)){using (StreamWriter sw = new StreamWriter(fs, Encoding.Default)){try{sw.Write(ex);}catch (Exception ex1){WriteLog(ex1);}finally{sw.Close();fs.Close();}}}}}}//货品类class Goods {public int Num { get; set; }public int MaxNum { get; set; }public Goods() {Num = 10;MaxNum = 50;} } }运行截图:
总结
以上是生活随笔为你收集整理的C#中一道关于多线程的基础练习题——模拟仓库存销过程的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: Windows7 连接Windows S
- 下一篇: SQL SERVER与C#中数据类型的对