c# 接口使用实例
程序员文章站
2022-04-29 14:32:40
用接口实现一个简单的物件的入库,出库如定义一个物流类接口,包含物件所属快递公司名称属性,物件单号属性及信息显示方法。通过物件出库类信息和物件入库类信息继承该接口。文档接口如下:如下:(一)接口定义//...
用接口实现一个简单的物件的入库,出库
如定义一个物流类接口,包含物件所属快递公司名称属性,物件单号属性及信息显示方法。通过物件出库类信息和物件入库类信息继承该接口。
文档接口如下:
如下:
(一)接口定义
//定义一个接口imyinterface interface imyinterface { void commodityinformation();//定义一个快递信息显示方法 string id { get; set; }//定义一个快递单号属性 string name { get; set; }///定义一个快递所属快递公司名称属性 }
(二)物件入库类
//入库类 public class inbound : imyinterface { string id = ""; string name = ""; public string id { get { return id; } set { id = value; } } public string name { get { return name; } set { name = value; } } void imyinterface.commodityinformation() { console.writeline("入库信息:\n" + "物件单号:" + id + " " + "所属快递公司:" + name); } }
(三)物件出库类
//出库类 public class outbound : imyinterface { string id = ""; string name = ""; public string id { get { return id; } set { id = value; } } public string name { get { return name; } set { name = value; } } void imyinterface.commodityinformation() { console.writeline("出库信息:\n" + "物件单号:" + id + " " + "所属快递公司:" + name); } }
(四)调用接口,实现结果
1,所先要引用consoleapp2如下
2,调用接口:
static void main(string[] args) { imyinterface[] face = { new inbound(), new outbound() }; face[0].id = "x78945612355"; face[0].name = "申通"; face[0].commodityinformation(); face[1].id = "x78912345674"; face[1].name = "顺丰"; face[1].commodityinformation(); console.readkey(); }
3,实现结果如下:
以上就是c# 接口使用实例的详细内容,更多关于c# 接口使用的资料请关注其它相关文章!