黑马程序员技术交流社区
标题: 看下这个简单的事件 [打印本页]
作者: 周琪 时间: 2013-5-18 20:11
标题: 看下这个简单的事件
//给事件绑定和解除方法的方式不是只有+=和-=么?为什么我用只用=也可以呢。而在其他地方要用+=。
public delegate void MyDel();
class Program
{
public static event MyDel MyEvent;
static void Main(string[] args)
{
MyEvent = MyMethod; //不用+=绑定
DiaoYong();
Console.ReadKey();
}
static void DiaoYong()
{
MyEvent();
}
static void MyMethod()
{
Console.WriteLine("同一个世界,同一个梦想。。。");
}
}
作者: 许庭洲 时间: 2013-5-18 22:00
1 .作为委托参数传递的方法必须与委托声明具有相同的签名。
2. 例如:// Declare a delegate
delegate void Del(int i, double j);
class MathClass
{
staticvoid Main()
{
MathClass m = new MathClass();
// Delegate instantiation using"MultiplyNumbers"
Del d = m.MultiplyNumbers;
//Invoke the delegate object.
System.Console.WriteLine("Invoking the delegate using'MultiplyNumbers':");
for (int i = 1; i <= 5; i++)
{
d(i, 2);
}
}
//Declare the associated method.
voidMultiplyNumbers(int m, double n)
{
System.Console.Write(m * n + " ");
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
输出
Invoking the delegate using 'MultiplyNumbers':
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |