博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.net实现多重继承问题(virtual)
阅读量:6247 次
发布时间:2019-06-22

本文共 427 字,大约阅读时间需要 1 分钟。

   C#中是没有类的多重继承这个概念.要使用多重继承必须要通过接口Interface来完成,

  一。接口类

  interface  getTable{ 

     DataTable Getdatatable(string str); 
  }

 二。业务类

  class getTableA:getTable{

    public virtual DataTable Getdatatable(string str){
     //具体业务逻辑略
   }
 }

 

 三。定义基本类

  class getMethod{

    public static getTable table(){
     return new getTableA();
   }
 }

 四,具体实现  

    getMethod gm=new getMethod();

    getTable get=gm.table();
    get.Getdatatable("参数");

 

转载于:https://www.cnblogs.com/huguole/p/6039490.html

你可能感兴趣的文章
Android selector背景以及透明色
查看>>
MySQL集群系列1:2台机器搭建双主集群
查看>>
leetcode342合理运用位操作判断4的幂
查看>>
iOS 手势操作:拖动、捏合、旋转、点按、长按、轻扫、自定义
查看>>
docker 应用-1(安装以及基础命令)
查看>>
聊聊springboot2的LoggersEndpoint
查看>>
微信小程序数据处理
查看>>
iOS CoreData (一) 增删改查
查看>>
agGrid设置对指定行不能选中checkbox
查看>>
SAP成都研究院DevOps那些事
查看>>
SAP Fiori应用Footerbar区域按钮的高亮显示逻辑
查看>>
ES6 作用域——var、let、const
查看>>
组件使用总结:使用 JAXB 实现 XML文件和java对象互转
查看>>
数据结构与算法 | Leetcode 876. middle-of-the-linked-list
查看>>
区块链中的随机数
查看>>
其实我们可以少写点if else和switch
查看>>
一行代码让你的TableView动起来-iOS动画
查看>>
Spring Cloud实战系列(八) - 微服务监控Spring Boot Admin
查看>>
MySql相关语句总结
查看>>
史上最全面的React-react基础
查看>>