C#Protected和多态

IT技术2年前 (2022)发布 投稿用户
0

Protected在基类中界说后,能被派生类调用,但是不能被其他类调用。

virtual在基类中界说后,在派生类中能被重写。
usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespace承继
{classVertebrate
{protectedstringspine;//受维护的字段privatedoubleweigth;privatedoubletemperature;publicdoubleWeigth

C#


{set{if(value<0)
{
weigth=0;
}else{
weigth=value;
}
}get{returnweigth;}
}publicdoubleTemperature
{set{if(value<0)
{
temperature=0;
}else{
temperature=value;
}
}get{returntemperature;}
}publicVertebrate()
{
spine=”脊柱”;
weigth=0;
temperature=0;
}publicvirtualvoidBreate()//虚办法{
Console.WriteLine(“呼吸”);
}publicvoidSleep()
{
Console.WriteLine(“睡觉”);
}
}
}
usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespace承继
{classProgram
{staticvoidMain(string[]args)
{
Vertebratevertebrate=newVertebrate();
vertebrate.spine1=”脊柱”;//public的就能被直接调用Mammalmammal=newMammal();
Fishfish=newFish();
Animalanimal=newAnimal();
Console.WriteLine(“我是一只哺乳动物”);
mammal.Scukle();
animal.Breate();
mammal.Breate();
fish.Breate();
mammal.Sleep();
mammal.Message();
}
}classFish:Vertebrate
{publicoverridevoidBreate()//重写基类中的虚办法{
Console.WriteLine(“用鳃呼吸”);
}
}classAnimal:Vertebrate
{
}classMammal:Vertebrate//派生类:基类{privatestringarms;privatestringlegs;privateintage;publicintAge
{set{age=value;}get{returnage;}
}publicMammal()
{
arms=”前肢”;
legs=”后肢”;
Age=0;
Weigth=10;
Temperature=37;
}publicvoidScukle()
{
Console.WriteLine(“哺乳”);
}publicoverridevoidBreate()
{
Console.WriteLine(“用肺呼吸”);
}publicvoidMessage()
{
Console.WriteLine(“体重:{0}”,Weigth);
Console.WriteLine(“年龄:{0}”,Age);
Console.WriteLine(“体温:{0}”,Temperature);
Console.WriteLine(“我有{0}和{1}”,arms,legs);
}
}
}

© 版权声明
好牛新坐标 广告
版权声明:
1、IT大王遵守相关法律法规,由于本站资源全部来源于网络程序/投稿,故资源量太大无法一一准确核实资源侵权的真实性;
2、出于传递信息之目的,故IT大王可能会误刊发损害或影响您的合法权益,请您积极与我们联系处理(所有内容不代表本站观点与立场);
3、因时间、精力有限,我们无法一一核实每一条消息的真实性,但我们会在发布之前尽最大努力来核实这些信息;
4、无论出于何种目的要求本站删除内容,您均需要提供根据国家版权局发布的示范格式
《要求删除或断开链接侵权网络内容的通知》:https://itdw.cn/ziliao/sfgs.pdf,
国家知识产权局《要求删除或断开链接侵权网络内容的通知》填写说明: http://www.ncac.gov.cn/chinacopyright/contents/12227/342400.shtml
未按照国家知识产权局格式通知一律不予处理;请按照此通知格式填写发至本站的邮箱 wl6@163.com

相关文章