using System;
using System.Collections.Generic;
using System.Text;
//多重传送事件
namespace interfaceDemo
{
//多重传送事件是指一个事件同时有多个订阅者,即通过委托将多个方法添加到该事件中,当事件被引发时,同时
//触发这些委托的执行
class MutiplyEventTest
{
public delegate void MathOp(int i, int j);//定义委托
public event MathOp eventMath;//事件定义
static void Main(string[] args)
{
MutiplyEventTest et = new MutiplyEventTest();//对象实例化
//四个执行不同的方法的委托订阅同一个事件
et.eventMath += new MathOp(Add);//订阅事件,实际上是添加一个指向方法的委托,当事件引发时将通过委托调用此方法,一个时间有多个订阅者,即通过委托可以将多个方法添加到某个事件中
et.eventMath += new MathOp(Minus);
et.eventMath += new MathOp(Mutiply);
et.eventMath += new MathOp(Divide);
Console.WriteLine("请输入两个正数:");
int m = int.Parse(Console.ReadLine());
int n = int.Parse(Console.ReadLine());
if (m > 0 & n > 0)//满足一定条件,引发事件
{
et.eventMath(m, n);
}
Console.ReadLine();
}
public static void Add(int i, int j)
{
Console.WriteLine("{0}+{1}={2}", i, j, i + j);
}
public static void Minus(int i, int j)
{
Console.WriteLine("{0}-{1}={2}", i, j, i - j);
}
public static void Mutiply(int i, int j)
{
Console.WriteLine("{0}*{1}={2}", i, j, i * j);
}
public static void Divide(int i, int j)
{
Console.WriteLine("{0}/{1}={2}", i, j, i / j);
}
}
}
分享到:
相关推荐
2.9.2 给Main()方法传送参数..... 54 2.10 有关编译C#文件的更多内容...... 55 2.11 控制台I/O.... 56 2.12 使用注释...... 58 2.12.1 源文件中的内部注释..... 58 2.12.2 XML文档说明..... 59 2.13 C#预处理器指令....
针对现有的门限秘密共享方案在处理参与者集合动态变化时灵活性差和许多多重秘密共享方案不能一次恢复出多个秘密(需要进行很多轮的计算)这两个缺点,提出了一个新的方案,给出了一个简单实用的Lagrange插值的方法。...