首页 > 代码库 > C# 面向对象的new关键字的使用
C# 面向对象的new关键字的使用
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplicationTest{ class Program { static void Main(string[] args) { Student s = new Student("‘zhangsan",19,1); //父类中的person say hello 没有输出,原因是隐藏了父类的方法 //如果想有意隐藏父类的同名方法 使用关键字new s.SayHello(); //student say hello Console.ReadKey(); } } public class Person { public string Name { get; set; } public int Age { get; set; } //父类构造函数 public Person(string name,int age) { this.Name = name; this.Age = age; } public void SayHello() { Console.WriteLine("person say hello"); } } public class Student:Person { public int Id { get; set; } //子类构造函数 //关键字base的使用:调用父类的构造函数 public Student(string name,int age,int id):base(name,age) { this.Id = id; } public new void SayHello() { Console.WriteLine("student say hello"); } }}
PS:new关键字
1)创建对象
2)隐藏从父类那里继承过来的同名成员
隐藏的后果就是子类调用不到父类的成员。
C# 面向对象的new关键字的使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。