当前位置:网站首页>Class inheritance in C #
Class inheritance in C #
2022-07-05 02:59:00 【Andy ahui】
Welcome to be my reader , I hope this article can give you some help .
Preface
In daily program coding work , Our ultimate goal is to complete the development tasks assigned by the company , The core goal is to write good code .
So what is good code ?
High cohesion , Low coupling
We must be engaged in coding , I've almost heard this sentence . So what kind of code is highly cohesive , How about low coupling .
Today, let's learn about C# In this high-level language , Through those forms .
In current high-level languages , These three characteristics are common , It is also often used in our daily coding . Namely encapsulation 、 Inherit 、 polymorphic .
Let's first look at inheritance
Class inheritance
Through inheritance, we can get a new class , The new class can define a series of methods and variables by itself , It also has the properties and behaviors of the base class .
The relationship here is base class and derived class .
It should be noted that derived classes cannot delete any members of the base class .
class Ahui:InfoBase
{
public string GetInfo()
{
return this.Name+""+this.Age;
}
}
class InfoBase
{
public int Age { get; set; }
public int Name { get; set; }
public string Love()
{
return " Woman ";
}
}
The above example ,InfoBase It belongs to the base class ,Ahui It belongs to a derived class , You can see that inheritance is achieved by colons .
Inherited members can be accessed , Just as they are declared by the derived class itself .
Currently, all classes are derived from object class ,object Class is the only non derived class , It is the basis of inheritance hierarchy . Classes that currently have no base class specification are implicitly derived directly from classes object.
matters needing attention
1、 There can only be one separate class in the base class specification of a class declaration , It is called single inheritance .
2、 Although a class can only directly inherit one base class , But there is no limit to the level of inheritance .
At present, derived classes cannot delete members and functions of base classes , But you can shield base class members and functions by declaring the same members in derived classes . Note here that the names must be the same .
class Program
{
static void Main(string[] args)
{
Ahui hui = new Ahui();
Console.WriteLine(hui.Name);
Console.ReadKey();
}
}
class Ahui:InfoBase
{
public string Name = " aunt ";
public string GetInfo()
{
return this.Name+""+this.Age;
}
}
class InfoBase
{
public int Age=27;
public string Name = "ahui";
public string Love()
{
return " Woman ";
}
}
remarks
Life is short , I don't want to pursue what I can't see , I just want to catch what I can see .
Originality is not easy. , Pay attention .
I am a A Hui , Thank you for reading , If it helps you , Please like it 、 forward thank you .
I'm glad to be friends with you .
边栏推荐
- d3js小记
- D3js notes
- Hmi-32- [motion mode] add light panel and basic information column
- [Yu Yue education] National Open University autumn 2018 8109-22t (1) monetary and banking reference questions
- Acwing第 58 场周赛【完结】
- Pat class a 1160 forever (class B 1104 forever)
- Why is this an undefined behavior- Why is this an undefined behavior?
- Azkaban installation and deployment
- openresty ngx_lua執行階段
- openresty ngx_lua执行阶段
猜你喜欢
Yuan universe also "real estate"? Multiple second-hand trading websites block metauniverse keywords
Idea inheritance relationship
2. Common request methods
Can you really learn 3DMAX modeling by self-study?
Flume configuration 4 - customize mysqlsource
Pat grade a 1119 pre- and post order traversals (30 points)
Apache Web page security optimization
问题解决:AttributeError: ‘NoneType‘ object has no attribute ‘append‘
[200 opencv routines] 99 Modified alpha mean filter
Hmi-30- [motion mode] the module on the right side of the instrument starts to write
随机推荐
Cut! 39 year old Ali P9, saved 150million
Blue bridge - maximum common divisor and minimum common multiple
2.常见的请求方法
低度酒赛道进入洗牌期,新品牌如何破局三大难题?
【LeetCode】501. Mode in binary search tree (2 wrong questions)
Design of KTV intelligent dimming system based on MCU
openresty ngx_lua執行階段
腾讯云,实现图片上传
Apache Web page security optimization
Pytest (5) - assertion
Hot knowledge of multithreading (I): introduction to ThreadLocal and underlying principles
2021 Li Hongyi machine learning (1): basic concepts
From task Run get return value - getting return value from task Run
Bumblebee: build, deliver, and run ebpf programs smoothly like silk
SFTP cannot connect to the server # yyds dry goods inventory #
Devtools的简单使用
There is a question about whether the parallelism can be set for Flink SQL CDC. If the parallelism is greater than 1, will there be a sequence problem?
Pytest (4) - test case execution sequence
Character painting, I use characters to draw a Bing Dwen Dwen
VM in-depth learning (XXV) -class file overview