博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#--类之隐藏基类的成员
阅读量:6758 次
发布时间:2019-06-26

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

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication3{   public class BaseClass    {        ///         /// 常量        ///         public const int Number = 10;        ///         /// 属性        ///         public int ID { get; set; }        ///         /// 字段        ///         public string Name;        ///         /// 方法        ///         /// 
public void SayHello() { Console.WriteLine("我是无返回类型的方法"); } /// /// 索引 /// /// ///
public int this[int index] { get { switch (index) { case 0: return 0; break; case 1: return 1; break; case 2: return 2; break; case 3: return 3; break; default: return 10000; break; } } set { switch (index) { case 0: ID = value; break; case 1: ID = value; break; case 2: ID = value; break; case 3: ID = value; break; default: ID = value; break; } } } }}
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication3{    public class MyClass : BaseClass    {        ///         /// 常量        ///        new public const int Number = 10;        ///         /// 属性        ///        new public int ID { get; set; }        ///         /// 字段        ///         public string Name;        ///         /// 方法        ///         /// 
public string SayHello() { string str = "hello"; return str; } /// /// 索引 /// /// ///
public int this[int index] { get { switch (index) { case 0: return 0; break; case 1: return 1; break; case 2: return 2; break; case 3: return 3; break; default: return 10000; break; } } set { switch (index) { case 0: ID = value; break; case 1: ID = value; break; case 2: ID = value; break; case 3: ID = value; break; default: ID = value; break; } } } }}

使用new关键字隐藏基类成员

转载地址:http://rwweo.baihongyu.com/

你可能感兴趣的文章
Python 语言之 map/reduce
查看>>
Vue.js - Day4
查看>>
mysql之用户
查看>>
053(三十五)
查看>>
AddonSU Packages now available for LineageOS 15.1
查看>>
UVa 10970 - Big Chocolate
查看>>
C# API 如何保证使用托管对象的平台调用成功
查看>>
产品新版本发布前要做那些事呢
查看>>
hdu-1114 Piggy-Bank---完全背包
查看>>
批处理基础
查看>>
Android Disable Package/Component 跳过app安装
查看>>
2.Storm集群部署及单词统计案例
查看>>
javabean,pojo,vo,dto,
查看>>
·转」linux的学习路线
查看>>
寄存器
查看>>
2008年12月在东京出差时给国内的回信
查看>>
android 环境搭建
查看>>
面试:用 Java 逆序打印链表
查看>>
Android内存优化(三)详解内存分析工具MAT
查看>>
SQL Server事务遭遇网络异常时的处理机制浅析
查看>>