摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _12_return { class Program { public static void Main(str... 阅读全文
posted @ 2016-11-26 22:32 hao_1234_1234 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 二、小练习 三、请自主实现降序排序 阅读全文
posted @ 2016-11-26 20:01 hao_1234_1234 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 练习二 练习三 阅读全文
posted @ 2016-11-26 18:59 hao_1234_1234 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 方法的递归就是方法内部重新调用自己。 阅读全文
posted @ 2016-11-26 18:40 hao_1234_1234 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 一、C#语法规则: 方法重载:同一个类中,方法名相同,参数(类型或数量)不同,方法体不同; 方法重写:不同的类中,方法名相同,参数(类型和数量)相同,方法体不同; 关键字: vatiral(标注需要被重写的方法) 、override(标注用于重写的方法) 二、实践 1、方法重写 方法的重载 阅读全文
posted @ 2016-11-26 18:23 hao_1234_1234 阅读(792) 评论(1) 推荐(0) 编辑