C#继承构造函数存在的意义:大家都知道C#构造函数主要用来设置类中属性的初始值,但经常会忽视类的构造方法也可以象方法一样引用调用父类中的构造方法或本身的其他构造方法。往往因此写了很多重复代码。下面的代码介绍了类的构造方法的几种用法。
成都创新互联公司秉承实现全网价值营销的理念,以专业定制企业官网,成都网站建设、成都网站制作,成都小程序开发,网页设计制作,手机网站制作设计,全网营销推广帮助传统企业实现“互联网+”转型升级专业定制企业官网,公司注重人才、技术和管理,汇聚了一批优秀的互联网技术人才,对客户都以感恩的心态奉献自己的专业和所长。
C#继承构造函数的示例:
- using System;
- namespace TestApplication
- {
- class Test
- {
- static void Main(string[] args)
- {
- TestA testA1 = new TestA();
- Console.WriteLine("测试类A无参数构造方法");
- Console.WriteLine(testA1.ToString());
- Console.WriteLine();
- TestA testA2 = new TestA("Set First Param");
- Console.WriteLine("测试类A一个参数构造方法");
- Console.WriteLine(testA2.ToString());
- Console.WriteLine();
- TestB testB1= new TestB();
- Console.WriteLine("测试类B无参数构造方法");
- Console.WriteLine(testB1.ToString());
- Console.WriteLine();
- TestB testB2 = new TestB("Set First Param");
- Console.WriteLine("测试类B一个参数构造方法");
- Console.WriteLine(testB2.ToString());
- Console.WriteLine();
- TestB testB3 = new TestB("Set First Param", "Set Second Param");
- Console.WriteLine("测试类B两个参数构造方法");
- Console.WriteLine(testB3.ToString());
- Console.WriteLine();
- TestB testB4 = new TestB("Set First Param",
- "Set Second Param", "Set Third Param");
- Console.WriteLine("测试类B三个参数构造方法");
- Console.WriteLine(testB4.ToString());
- Console.WriteLine();
- Console.ReadLine();
- }
- }
- ///
- /// 测试类A---C#继承构造函数
- ///
- class TestA
- {
- protected string _testValueA;
- ///
- /// 无参数构造方法 --C#继承构造函数
- ///
- public TestA():this("Set First Param")
- {
- }
- ///
- /// 一个参数构造方法 --C#继承构造函数
- ///
- ///
- public TestA(string value)
- {
- _testValueA = value;
- }
- ///
- /// 重新ToString方法
- ///
- ///
- public override string ToString()
- {
- return this._testValueA;
- }
- }
- ///
- /// 测试类TestB,从TestA类中继承---C#继承构造函数
- ///
- class TestB : TestA
- {
- protected string _testValueB;
- protected string _testValueC;
- ///
- /// 调用父类中的构造方法
- ///
- public TestB():base()
- {
- this._testValueB = "Set Second Param";
- this._testValueC = "Set Third Param";
- }
- ///
- /// 调用父类中的构造方法--C#继承构造函数
- ///
- ///
- public TestB(string valueA)
- : base(valueA)
- {
- this._testValueB = "Set Second Param";
- this._testValueC = "Set Third Param";
- }
- ///
- /// 调用其他构造方法---C#继承构造函数
- ///
- ///
- ///
- public TestB(string valueA, string valueB)
- : this(valueA, valueB, "Set Third Param")
- {
- }
- ///
- /// 三个参数的构造方法
- ///
- ///
- ///
- ///
- public TestB(string valueA, string valueB, string valueC)
- {
- this._testValueA = valueA;
- this._testValueB = valueB;
- this._testValueC = valueC;
- }
- ///
- /// 重新ToString方法 --C#继承构造函数
- ///
- ///
- public override string ToString()
- {
- return this._testValueA + "\n" + this._testValueB + "\n" + this._testValueC ;
- }
- }
- }
C#继承构造函数示例输出结果:
- 测试类A无参数构造方法
- Set First Param
- 测试类A一个参数构造方法
- Set First Param
- 测试类B无参数构造方法
- Set First Param
- Set Second Param
- Set Third Param
- 测试类B一个参数构造方法
- Set First Param
- Set Second Param
- Set Third Param
- 测试类B两个参数构造方法
- Set First Param
- Set Second Param
- Set Third Param
- 测试类B三个参数构造方法
- Set First Param
- Set Second Param
- Set Third Param
C#继承构造函数的基本情况就向你介绍到这里,希望对你学习和了解C#继承构造函数有所帮助。
【编辑推荐】
新闻名称:C#继承构造函数实现浅析
本文网址:http://www.mswzjz.cn/qtweb/news22/259922.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能