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

推荐订阅源

W
WeLiveSecurity
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
S
Security @ Cisco Blogs
T
Threat Research - Cisco Blogs
TaoSecurity Blog
TaoSecurity Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
腾讯CDC
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
F
Full Disclosure
博客园 - 【当耐特】
C
CERT Recently Published Vulnerability Notes
Engineering at Meta
Engineering at Meta
Application and Cybersecurity Blog
Application and Cybersecurity Blog
T
Threatpost
I
Intezer
V2EX - 技术
V2EX - 技术
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Hacker News
The Hacker News
小众软件
小众软件
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
N
News | PayPal Newsroom
MyScale Blog
MyScale Blog
AI
AI
Vercel News
Vercel News
Spread Privacy
Spread Privacy
美团技术团队
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
The GitHub Blog
The GitHub Blog
V
Vulnerabilities – Threatpost
Schneier on Security
Schneier on Security
Cyberwarzone
Cyberwarzone
G
GRAHAM CLULEY
Help Net Security
Help Net Security
Hacker News: Ask HN
Hacker News: Ask HN
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
L
LINUX DO - 热门话题
U
Unit 42
L
LangChain Blog
Recent Announcements
Recent Announcements

博客园 - qqhe325

一个js游戏 向del.icio.us学习 lucene.net优化总结 Fxcop使用笔记 web service 记录1 自定义加密web.config实验记录 DTC:该伙伴事务管理器已经禁止了他对远程/网络事务的支持 js自动加载日期类 img的onload事件 当图片路径超出网站根目录时 vs2005宏的问题 asp.net 2.0 access 未指定的错误 oledbparameter在update时出错不报错 grove 小例子 delegate和event例子 你试图打开的项目是Web项目,请指定URL路径 asp.net 在分析向此请求提供服务所需资源时出错 策略模式 我们是怎样的一代人[转]
C#基础- 抽象类,静态类
qqhe325 · 2007-09-24 · via 博客园 - qqhe325

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Text;
 4 
 5 namespace ConsoleApp2
 6 {
 7     class Program
 8     {
 9         static void Main(string[] args)
10         {
11             //new D().DoWork(1);
12             //new F().DoSing();
13             //H.WriteH();
14             E.WriteE();
15         }
16     }
17 
18     public class D
19     {
20         public D()
21         {
22             Console.WriteLine("Constructor of D is running");
23         }
24         public virtual void DoWork(int i)
25         {
26             // Original implementation.
27             Console.WriteLine("D");
28         }
29 
30         public void DoEat()
31         {
32             Console.WriteLine("D is Eatting");
33         }
34 
35         public static void DoComputer()//子类看不到
36         {
37             Console.WriteLine("D's static DoComputer");
38         }
39     }
40 
41     public abstract class E : D
42     {
43         public abstract override void DoWork(int i);//对继承者来说还是虚的,必须被override
44         public virtual void DoJump()
45         {
46             Console.WriteLine("Jump");
47         }
48 
49         public void DoSing()
50         {
51             Console.WriteLine("E is Sing");
52         }
53 
54         public E()//实例化子类时被调用
55         {            
56             Console.WriteLine("Constructor of E is running");
57         }
58 
59         public static void WriteE()
60         {
61             Console.WriteLine("WriteE");
62         }
63     }
64     public class F : E
65     {
66         public F()
67         {
68             Console.WriteLine("Constructor of F is running");
69         }
70         public override void DoWork(int i)
71         {
72             // New implementation.
73         }
74 
75        new public void DoSing()
76         {
77             Console.WriteLine("F is sing");
78         }
79 
80 
81     }
82 
83     public static class H
84     {
85         //当调用静态方法时调用静态构造函数
86          static H()
87         {
88             Console.WriteLine("H was bore");
89         }
90 
91         public static void WriteH()
92         {
93             Console.WriteLine("WriteH");
94         }
95     }
96 
97 
98 }
99