资源描述:
《C#实验四类与对象》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、实训五、在C#中实现面向对象编程一、实训目的:通过本章的学习,主要把握以下内容:•理解C#的类和对象•使用C#构造函数和析构函数•使用C#访问修饰符•使用方法•在C#中使用方法的重写•理解属性及其不同的类型、实现•理解和使用索引器三、实验目的与要求(1)加深理解面向对象编程的概念,如类、对象、实例化等;(2)熟悉掌握类的声明格式,特别是类的成员定义、构造函数、初始化对象等。(3)数量掌握方法的声明,理解并学会使用方法的参数传递,方法的重载等。四、实训内容:(1)定义一个描述学生基本情况的类,数据成员包括姓名,学号,C#、英语和数
2、学成绩。成员函数包括输出数据、置姓名和学号、置三门课的成绩,求出总成绩和平均成绩。usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespaceClassStudent{classProgram{classStudent{publicstringSname;publicstringSno;publicintCsharp;publicintEnglish;publicintMath;publicvoiddisplay()
3、{Console.WriteLine("大䨮家¨°好?!ê?我¨°是º?{0}分¤?,ê?学¡ì号?是º?{1},ê?我¨°的Ì?C#成¨¦绩¡§{2}分¤?我¨°的Ì?英®¡é语®?成¨¦绩¡§{3}分¤?我¨°的Ì?数ºy学¡ì成¨¦绩¡§{4}分¤?",this.Sname,this.Sno,this.Csharp,this.English,this.Math);//this.我¨°自Á?己o的Ì?****}publicvoidGiveSname(stringname){this.Sname=name;}publicv
4、oidGiveSno(stringSno){this.Sno=Sno;}publicvoidGiveCsharp(intCsharp){this.Csharp=Csharp;}publicvoidGiveEnglish(intEnglish){this.English=English;}publicvoidGiveMath(intMath){this.Math=Math;}publicdoubleAvg(intc,inte,intm){doubleavg=(c+e+m)/3.0;returnavg;}publicdoubleCo
5、unt(intc,inte,intm){doublecon=(c+e+m);returncon;}}staticvoidMain(string[]args){doublea,c;Students=newStudent();Console.WriteLine("姓?名?:êo");StringSname=Console.ReadLine();s.GiveSname(Sname);Console.WriteLine("学¡ì号?:êo");StringSno=Console.ReadLine();s.GiveSno(Sno);Con
6、sole.WriteLine("C#成¨¦绩¡§:êo");intCsharp=Convert.ToInt16(Console.ReadLine());s.GiveCsharp(Csharp);Console.WriteLine("英®¡é语®?成¨¦绩¡§:êo");intEnglish=Convert.ToInt16(Console.ReadLine());s.GiveEnglish(English);Console.WriteLine("数ºy学¡ì成¨¦绩¡§:êo");intMath=Convert.ToInt16(C
7、onsole.ReadLine());s.GiveMath(Math);s.display();Console.WriteLine("我¨°的Ì?平?均¨´分¤?是º?{0}分¤?,ê?我¨°的Ì?总Á¨¹分¤?是º?{1}分¤?",a=s.Avg(Csharp,English,Math),c=s.Count(Csharp,English,Math));}}}(2)定义一个人员类CPerson,包括数据成员:姓名、编号、性别和用于输入输出的成员函数。并实现对人员信息的输入输出。usingSystem;usingSystem.Co
8、llections.Generic;usingSystem.Linq;usingSystem.Text;namespaceCprison{classProgram{classCPerson{privatestringName;privatestringPno;p