最新回答 / 慕的地7207464
是不是你的Dog类定义的有问题啊 public class Dog { private string name; public Dog(string name){ this.name = name; } } List<Dog> list = new List<Dog>(); list.Add(new Dog("A")); list.Add(new Dog("B")...
2018-12-20
最赞回答 / 慕姐0500975
在Dog:Pet 派生类定义中添加代码:static public void RemoveDog() { Num-- ; } //狗的数量减少一个,前面必须带有static关键词然后在static void Main(string[] args)程序中添加代码: Dog.RemoveDog(); //减少狗的数量,调用函数 Dog.ShowNum(); // 再次输出狗的数量
2018-11-27