接口部分源代码接口部分源代码.doc

  1. 1、本文档共8页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
接口部分源代码接口部分源代码

二、分析实现接口的程序文件 分析以下实现接口的程序文件并回答问题: ??本程序中的接口包含方法的构成是哪些; ??实现接口的类包含哪些元素? ??类实现接口方法的参数如何变换实现的? ??给出程序的输出结果。 代码如下: using System; public interface IComparable { int CompareTo(IComparable comp); } public class TimeSpan : IComparable { private uint totalSeconds; public TimeSpan() { totalSeconds = 0; } public TimeSpan(uint initialSeconds) { totalSeconds = initialSeconds; } public uint Seconds 55 { get { return totalSeconds; } set { totalSeconds = value; } } public int CompareTo(IComparable comp) { TimeSpan compareTime = (TimeSpan) comp; if(totalSeconds compareTime.Seconds) return 1; else if(compareTime.Seconds == totalSeconds) return 0; else return -1; } } class Tester { public static void Main() { TimeSpan myTime = new TimeSpan(3450); TimeSpan worldRecord = new TimeSpan(1239); if(myTime.CompareTo(worldRecord) 0) Console.WriteLine(My time is below the world record); else if(myTime.CompareTo(worldRecord) == 0) Console.WriteLine(My time is the same as the world record); else Console.WriteLine(I spent more time than the world record holder); } } 56 三、覆盖虚接口程序 以下程序组合了多种功能,请参考如下代码解释并回答问题。 ??该程序包含的类的个数和关系? ??类对接口的实现有何区别? ??第一个类中无参数构造函数是否起作用,是否可以删除不用? ??类中的属性在哪里被应用到? ??第一个类中哪些成员被继承,列出所有? ??第二个类中构造方法成员如何实现,有何意义?可以去掉么? ??第二个类覆盖第一个类中接口虚方法,程序体现了什么功能区别? ??Sorter类有何作用?你能否根据Sorter类写一个十个数比较大小的冒泡法程序? ??Sorter类中for (int i = 0; swapped; i++)和 //for (int i = 0; i bubbles.Length; i++)两行是否作用相同? ??你知道Console.WriteLine(run outter);和Console.WriteLine(run inner);在程序运行过程中可以起到什么作用? ??将Main方法中的TimeSpan对象语句(注释掉的5行)和TimeSpanAdvanced对象语句选择轮流注释,体验排序结果的异同。 ??语句Sorter.BubbleSortAscending(raceTimes);前后的foreach语句功能区别。 using System; public interface IComparable { int CompareTo(IComparable comp); } public class TimeSpan : IComparable { private uint totalSeconds; public TimeSpan() { totalSeconds = 0; } public TimeSpan(uint initialSeconds) { totalSeconds = initialSeconds; } public uint Seconds { get { 57 return totalSeco

您可能关注的文档

文档评论(0)

tazhiq2 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档