C# 关键字:new
2021-01-04 07:27
标签:actor src 图片 style tor return 执行 类型 where 如果没有公共的无参构造函数会报错
C# 关键字:new 标签:actor src 图片 style tor return 执行 类型 where 原文地址:https://www.cnblogs.com/zhaoyl9/p/13196110.html1、实例化对象,执行构造函数
Teacher t3 = new Teacher("张三", 100, 100, 100);
2、隐藏父类的成员
1 class Person
2 {
3 public void SayHello()
4 {
5 Console.WriteLine("我是人类");
6 }
7 }
8
9 class Student : Person
10 {
11 public new void SayHello()//彻底隐藏了父类的SayHello()
12 {
13 Console.WriteLine("我是学生");
14 }
15 }
3、约束指定泛型类声明中的任何类型参数都必须具有公共的无参构造函数
1 class Program
2 {
3 static void Main(string[] args)
4 {
5 ItemFactory