-
C#标准事件流
服装价格变动,触发淘宝发布活动和消费者购买衣服事件流
1 public class EventStandard 2 { 3 public class Clothes { 4 5 /// <summary> 6 /// 服装编码 7 /// </summary> 8 public string Id { get; set; } 9 10 /// <summary> 11 /// 服装名称 12 /// </summary> 13 public string Name { get; set; } 14 15 /// <summary> 16 /// 服装价格 17 /// </summary> 18 private double _price; 19 20 public double Price { 21 get { return this._price; } 22 set { 23 PriceRiseHandler?.Invoke(this, new PriceEventArgs() 24 { 25 OldPrice = this._price, 26 NewPrice = value 27 }); 28 this._price = value; 29 } 30 } 31 32 /// <summary> 33 /// 服装价格变动事件 34 /// </summary> 35 public event EventHandler PriceRiseHandler; 36 37 } 38 39 /// <summary> 40 /// 衣服价格事件参数 一般会为特定的事件去封装个参数类型 41 /// </summary> 42 public class PriceEventArgs : EventArgs 43 { 44 public double OldPrice { get; set; } 45 public double NewPrice { get; set; } 46 } 47 48 public class TaoBao { 49 /// <summary> 50 /// 淘宝订户 51 /// </summary> 52 public void PublishPriceInfo(object sender, EventArgs e) { 53 Clothes clothes = (Clothes)sender; 54 PriceEventArgs args = (PriceEventArgs)e; 55 if (args.NewPrice < args.OldPrice) 56 Console.WriteLine($"淘宝:发布衣服价格下降的公告,{clothes.Name}服装直降{args.OldPrice - args.NewPrice}元,限时抢购!"); 57 else 58 Console.WriteLine("淘宝:价格悄悄上涨或价格未变化,啥也不做"); 59 } 60 61 } 62 63 public class Consumer 64 { 65 /// <summary> 66 /// 消费者订户 67 /// </summary> 68 public void Buy(object sender, EventArgs e) 69 { 70 Clothes clothes = (Clothes)sender; 71 PriceEventArgs args = (PriceEventArgs)e; 72 if (args.NewPrice < args.OldPrice) 73 Console.WriteLine($"消费者:之前价格{args.OldPrice},现在价格{args.NewPrice},果断买了!"); 74 else 75 Console.WriteLine($"消费者:等等看,降价了再说"); 76 } 77 } 78 79 public static void Show() 80 { 81 Clothes clothes = new Clothes() 82 { 83 Id = "12111-XK", 84 Name = "优衣库", 85 Price = 128 86 }; 87 //订阅:把订户和发布者的事件关联起来 88 clothes.PriceRiseHandler += new TaoBao().PublishPriceInfo; 89 clothes.PriceRiseHandler += new Consumer().Buy; 90 //价格变化,自动触发订户订阅的事件 91 clothes.Price = 300; 92 } 93 94 }
调用
clothes.Price = 300; EventStandard.Show();
clothes.Price = 98; EventStandard.Show();
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式