摘要: 类和对象 class Dog { //共同特征,品种(字段) public string breed; //行为, 犬叫(方法) public void Shout () { Console.WriteLine(breed + "汪汪汪!"); } } class Program { static 阅读全文
posted @ 2017-10-12 16:23 你的斗志并没有失去 阅读(125) 评论(0) 推荐(0) 编辑