欢迎光临
我们一直在努力

c#中接口(interface)的理解_c#教程

建站超值云服务器,限时71元/月

C#中的接口
1.都是“虚的”不能被实例化,这也是接口中为什么不能包含字段--成员变量的原因2.正因为接口是虚的,所以接口内的索引,属性,时间等只能有声明,而不能在接口内实现,具体如何实现是派生接口或者派生类的事.
3.都具有模板的性质,如果一个接口或者类从某一个接口继承,它将自动具有被集成者的特征(包括索引,属性,函数,实践等).
4.接口支持多重继承,而C#中,类之支持单一继承,接口实际表示的是一种承载能力,
下面是接口的一个简单定义:



interface
SampInterface1
{
    string
    this[ int index]
    {
        get;
        set
    }
    ;
    event EventHandler Event;
    void  Find( int value );
    //注意此处没有
    {
    }
   
    string Po
    int
    {
        get;
        set
    }
    ;
}
上面的接口定义了一个索引
this,一个实践Event,一个方法Find和一个属性Point.



public interface SampIneterface:SampIneterface1{
pravite  int a=1;
void find (int value)
{
a+=value;
}
event EventHandler Event;
protected void onEvent()
{
if(Event=null)
{return Event(this.System.EventAgrs.Empty;)}
}


}
http://www.cnblogs.com/kttt/archive/2006/09/23/512750.html

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » c#中接口(interface)的理解_c#教程
分享到: 更多 (0)