c#重点知识解答(五)
2024-07-21 02:15:56
供稿:网友
网站运营seo文章大全提供全面的站长运营经验及seo技术!
第五章:代理
代理实现的是象c++等语言的指针功能,不同于函数指针,代理是一种面向对象、安全类型的。代理事派生于公共基类(system)的一种参考类型,方法被压入一个代理中,对于实例方法被称为实例的组成实体或关于实例的方法,而静态方法,被称为类的组成实体或类方法。代理的强大功能是它可以自动的匹配方法,而不管其类型。
写一个代理包括三个步骤:
写代理、实例化、调用。
代理的声明使用以下语法:
delegate void simpledelegate();
实例化一个代理
class test
{
static void f() {
system.console.writeline("hello world");
}
static void main() {
simpledelegate d = new simpledelegate(f);//将方法压入
d();//通过代理;
f();//不通过代理;
}
}
最后让我们调用她
void multicall(simpledelegate d, int count) {
for (int i = 0; i < count; i++)
d();
}
}
我们可以看到对于方法的调用是通过代理来完成的,调用时并不需要知道被调用她的类型。代理在我看来好比是对象要一件事她不直接地调用这个方法,而是通过一个中间人去调用她。
下面就代理的强大功能进行详细介绍:首先然我们实现一个这样的功能,考虑一下该如何用指向基类的对象调用子类的成员函数。在这里程序员是不是点怀恋指针了,不过在c#中这样的功能完全也可实现的,使用一个单独的代理我们可以完成这项功能。以下代码来自timothy a. vanover文章。
namespace delegatescs
{
using system;
public class wisdom //包含代理的类
{
public delegate string giveadvice();
public string offeradvice(giveadvice words)
{
return words();
}
}
public class parent //基类
{
public virtual string advice()
{
return("listen to reason");
}
~parent() {}
}
public class dad: parent //子类
{
public dad() {}
public override string advice()
{
return("listen to your mom");
}
~dad() {}
}
public class mom: parent //子类
{
public mom() {}
public override string advice()
{
return("listen to your dad");
}
~mom() {}
}
public class daughter //不继承与基类的类
{
public daughter() {}
public string advice()
{
return("i know all there is to life");
}
~daughter() {}
}
public class test
{
public static string calladvice(parent p)//使用基类
{
wisdom parents = new wisdom();
wisdom.giveadvice teenagegirls = new wisdom.giveadvice(p.advice);//将advice方法委托给teenagegirls委托对象
return(parents.offeradvice(teenagegirls));
}
public static void main()
{
dad d = new dad();
mom m = new mom();
daughter g = new daughter();
//以下两个为衍于基类的类
console.writeline(calladvice(d));
console.writeline(calladvice(m));
//以下为未衍于基类的类,如果调用将出错。
//console.writeline(calladvice(g));
}
}
}
代理 二
1〉事件
上一章讲解了有关代理的基本应用,本章将继续讲解深入代理的使用。这里我们讲解使用代理来处理事件。关于事件在另一章进行详细讲解。处理事件在c#中对比c++和vb来说更聪明,你可以写代理然后写事件处理者,事件处理者是一种定义在控件和窗体类中的重载的公共事件。我们在以下的例子中将看到代理在事件中的应用。
1。写代理
我想处理鼠标单击事件和在鼠标单击左键或右键处理一些代码。写下面的代码在你的初始控件函数中。
this.mousedown += new system.winforms.mouseeventhandler(this.form_mousedown);
2. 写事件
现在你可以写事件处理,你的事件的输出参数将返回窗体的鼠标事件参数的详细内容。以下时鼠标事件参数成员
mouseeventargs members
button 指示哪一个键被压,分为左、右、中、无 。
clicks 指示鼠标压下次数及释放状态。
delta 指示鼠标转动数量计数
x 鼠标点击x坐标点
y 鼠标点击y坐标点
event handler
private void form_mousedown(object sender, system.winforms.mouseeventargs e)
{
switch (e.button)
{
case mousebuttons.left:
messagebox.show(this,"left button click");
break;
case mousebuttons.right:
messagebox.show(this,"right button click" );
break;
case mousebuttons.middle:
break;
default:
break;
}
}
在你的winform中测试你的程序,你会看到通过代理事件被关联了。
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
class i
{
public i(){}
~i() {}
public void idoloveyou()
{system.console.writeline("i do love you");}
public void why(){system.console.writeline("why?");}
}
class her
{
public her(){}
~her() {}
public void ido()
{system.console.writeline("...............");}
public void slient(){system.console.writeline(".........");}
}
class telephone
{public delegate void heartchat();
public telephone(){}
~telephone(){}
public void hello(){system.console.writeline("yesterday night,i telephone to my girlfriend"); }
}
class chat{
static void main() {
i i=new i();
her her=new her();
telephone telephone =new telephone();
telephone.hello();
telephone.heartchat tell=new telephone.heartchat(i.idoloveyou);
tell();
telephone.heartchat answer=new telephone.heartchat(her.ido);
answer();
telephone.heartchat ask=new telephone.heartchat(i.why);
ask();
telephone.heartchat noanswer=new telephone.heartchat(her.slient);
noanswer();
}
}