惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
博客园 - 聂微东
Application and Cybersecurity Blog
Application and Cybersecurity Blog
MyScale Blog
MyScale Blog
罗磊的独立博客
H
Help Net Security
L
LangChain Blog
T
Threat Research - Cisco Blogs
量子位
S
Securelist
Last Week in AI
Last Week in AI
L
Lohrmann on Cybersecurity
T
The Exploit Database - CXSecurity.com
P
Privacy International News Feed
The Hacker News
The Hacker News
Vercel News
Vercel News
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
Cybersecurity and Infrastructure Security Agency CISA
T
The Blog of Author Tim Ferriss
T
Threatpost
Security Latest
Security Latest
P
Palo Alto Networks Blog
Microsoft Security Blog
Microsoft Security Blog
NISL@THU
NISL@THU
F
Full Disclosure
WordPress大学
WordPress大学
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Heimdal Security Blog
J
Java Code Geeks
Recorded Future
Recorded Future
Hugging Face - Blog
Hugging Face - Blog
G
GRAHAM CLULEY
Know Your Adversary
Know Your Adversary
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
B
Blog RSS Feed
月光博客
月光博客
C
Cisco Blogs
V
Visual Studio Blog
D
DataBreaches.Net
H
Hacker News: Front Page
博客园 - 叶小钗
N
News and Events Feed by Topic
爱范儿
爱范儿
A
Arctic Wolf

博客园 - 探索

字符串倒序算法最优 - 探索 - 博客园 extern关键字 C++的基本概念和术语 关于软件汉化 郁闷! 命名空间语法 c++指针问题 - 探索 - 博客园 对程序集的理解 最近好累呀~~~~ Vigenere加密算法类 人工智能规则正向演绎系统简单程序演示(c++) 爱情与婚姻 我的论坛刚刚建立起来,希望大家能支持一下~~~ oracle数据库中数据控制 初学者读书笔记数据库篇(一) C#中只允许产生一个类的实例的方法 今天申请了一个Gmail~~ 关于对SQL Server连接访问问题 今天罪孽深重~~~
c#中重写(覆盖)和隐藏类的方法
探索 · 2005-06-06 · via 博客园 - 探索

重写是指重写基类的方法,在基类中的方法必须有修饰符virtual,而在子类的方法中必须指明override
格式:
基类中:
public virtual void myMethod()
 {
 }
子类中:
public override void myMethod()
 {
 }
重写以后,用基类对象和子类对象访问myMethod()方法,结果都是访问在子类中重新定义的方法,基类的方法相当于被覆盖掉了。如下例子:

 1using System;
 2class a
 3{
 4    int x=1;
 5    public virtual void PrintFields()
 6    {
 7        Console.WriteLine("x={0}",x);
 8    }

 9}

10
11class b:a
12{
13    int y=2;
14    public  override void PrintFields()
15    {
16        Console.WriteLine("y={0}",y);
17        
18    }

19    
20}

21
22class c
23{
24    public static void Main()
25    {
26        b me=new b();
27        me.PrintFields();
28        a y=new b();
29        y.PrintFields();
30    }

31}

以上代码运行结果:
y=2
y=2

如果把上面代码中的override去掉会怎么样呢?
那么运行的时候是不会有错误,但是会有个警告,因为编译器不知道你是要重写该方法,还是隐藏该方法。如果重写那么就加override,如果是隐藏那么就加new,其实不加new也可以运行,但是我们一般还是加上去。
如果是加了new,那么运行结果是:
y=2
x=1