车
| | |
两轮 三轮 四轮
| | | |
自 电平 卡 轿车(飞,船) -> 飞机
|->轮船
轿车是车,而且只有一个父类,车。但你想要的是会飞的,而且能在水上游的车,C#和java中,不允许有两个父亲,怎么办呢?就要靠飞机和轮船这两个接口。
不可多重继承,但可以有多个接口。
实例:
IModule.cs:
using System;
using System.Collections.Generic;
using System.Text; namespace PlatForm.Common
{
public interface IModule
{
public virtual string GetModuleXML();
}
}
using System.Collections.Generic;
using System.Text; namespace PlatForm.Common
{
public interface IModule
{
public virtual string GetModuleXML();
}
}
MeetingQueryModule.cs:
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI.WebControls.WebParts;
namespace PlatForm.Common
{
class MeetingQueryModule:WebPart,IModule
{
}
}
using System.Collections.Generic;
using System.Text;
using System.Web.UI.WebControls.WebParts;
namespace PlatForm.Common
{
class MeetingQueryModule:WebPart,IModule
{
}
}
相关文章
暂无评论...