资源描述:
《实验二 面向对象程序设计》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、实验指导书实验二、面向对象程序设计2.1C#面向对象程序设计(一)一、实验目的1.理解C#语言是如何体现面向对象编程基本思想。2.掌握类对象的定义。3.了解类的封装方法,以及如何创建类和对象。4.了解成员变量和成员方法的特性。5.掌握静态成员的用法。二、实验要求1.分析程序,上机验证结果。2.写出程序,并调试程序,要给出测试数据和实验结果。3.整理上机步骤,总结经验和体会。4.完成实验日志和上交程序。三、实验内容题目一:程序分析(1)分析下面两个程序,确定那个程序好,说明理由。程序要求:定义一个圆类,计算圆的面积和周长。程序1:publicclasscircle{publicstaticv
2、oidMain(){doubleradium,delimeter,square;constdoublepai=3.1415926;radium=Convert.ToInt32(Console.ReadLine());delimeter=2*pai*radium;square=pai*pai*radium;Console.WriteLine("delimeter={0},square={1}",delimeter,square);Console.ReadLine();}}程序2:publicclasscircle{doubledelimeter,square;constdoublepai=3
3、.1415926;publicvoidcalculate(doublerad){delimeter=2*pai*rad;-6-实验指导书square=pai*pai*rad;Console.WriteLine("delimeter={0},square={1}",delimeter,square);}publicstaticvoidMain(){doubleradium;circlecir=newcircle();radium=Convert.ToInt32(Console.ReadLine());cir.calculate(radium);Console.ReadLine();}}(2)
4、分析程序,写出程序的运行结果,并上机进行验证。UsingSystem;publicclassstudents{stringid,name;intage;publicstudents(stringid,stringname,intage){this.id=id;this.name=name;this.age=age;}publicvoidDisplay(){Console.WriteLine("id={0},name={1},age={2}",id,name,age);}publicstaticvoidMain(){//stringid,name;//intage;studentsstu=n
5、ewstudents("0001","zhangsan",16);stu.Display();Console.ReadLine();}}(3)分析程序,写出程序的运行结果,并上机进行验证。publicclassDate{privateintYear,Month,Day;publicDate(intYear,intMonth,intDay){this.Year=Year;-6-实验指导书this.Month=Month;this.Day=Day;}publicDate(System.DateTimedt){Year=dt.Year;Month=dt.Month;Day=dt.Day;}pub
6、licvoidDisplayDate(){Console.WriteLine("{0}年{1}月{2}日",Year,Month,Day);}}publicclassTester{publicstaticvoidMain(){System.DateTimecurrentTime=System.DateTime.Now;Datedt=newDate(2008,7,18);dt.DisplayDate();Datedt2=newDate(currentTime);dt2.DisplayDate();Console.ReadLine();}}题目二:程序编写(1)实现一个包含类属性方法的简单加法
7、程序,并能显示结果。(2)实现一个Person类,要求:属性包含姓名、年龄、身份证号、工作、工资等,并显示各属性的值。2.2C#面向对象程序设计(二)一、实验目的1.掌握构造函数和析构函数的含义与作用、定义方式和实现,能够根据要求正确定义和重载构造函数。能够根据给定的要求定义类并实现类的成员函数。2.理解类的成员的访问控制的含义,公有、私有和保护成员的区别。3.掌握参数传递的用法。4.掌握属性的作用和使用。二、实验要求-