C# 非静态类中的字段 属性 方法 构造函数的重载 析构函数的使用

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _04面向对象练习  
  8. {  
  9.     public class Student  
  10.     {  
  11.         //字段、属性、方法、构造函数  
  12.   
  13.        //析构函数  构造函数  
  14.   
  15.   
  16.   
  17.         //当程序结束的时候  析构函数才执行  
  18.         //帮助我们释放资源  
  19.         //GC Garbage Collection  
  20.         ~Student()  
  21.         {  
  22.             Console.WriteLine("我是析构函数");  
  23.         }  
  24.   
  25.   
  26.         public Student(string name, int age, char gender, int chinese, int math, int english)  
  27.         {  
  28.             this.Name = name;  
  29.             this.Age = age;  
  30.             this.Gender = gender;  
  31.             this.Chinese = chinese;  
  32.             this.Math = math;  
  33.             this.English = english;  
  34.         }  
  35.         //构造函数的重载,注意THIS关键字  
  36.         public Student(string name, int chinese, int math, int english):this(name,0,'c',chinese,math,english)  
  37.         {  
  38.             //this.Name = name;  
  39.             //this.Chinese = chinese;  
  40.             //this.Math = math;  
  41.             //this.English = english;  
  42.         }  
  43.         public Student(string name, int age, char gender)  
  44.         {  
  45.             this.Name = name;  
  46.             if (age < 0 || age > 100)  
  47.             {  
  48.                 age = 0;  
  49.             }  
  50.             this.Age = age;  
  51.             this.Gender = gender;  
  52.         }  
  53.   
  54.         public Student()  
  55.         {   
  56.               
  57.         }  
  58.   
  59.   
  60.         //字段  
  61.         private string _name;  
  62.        //属性  
  63.          public string Name  
  64.         {  
  65.             get { return _name; }  
  66.             set { _name = value; }  
  67.         }  
  68.         private int _age;  
  69.         public int Age  
  70.         {  
  71.             get { return _age; }  
  72.             set  
  73.             {  
  74.                 if (value < 0 || value > 100)  
  75.                 {  
  76.                     value = 0;  
  77.                 }  
  78.                 _age = value;  
  79.             }  
  80.         }  
  81.         private char _gender;  
  82.         public char Gender  
  83.         {  
  84.             get  
  85.             {  
  86.                 if (_gender != '男' && _gender != '女')  
  87.                 {  
  88.                     return _gender = '男';  
  89.                 }  
  90.                 return _gender;  
  91.             }  
  92.             set { _gender = value; }  
  93.         }  
  94.         private int _chinese;  
  95.         public int Chinese  
  96.         {  
  97.             get { return _chinese; }  
  98.             set { _chinese = value; }  
  99.         }  
  100.         private int _math;  
  101.         public int Math  
  102.         {  
  103.             get { return _math; }  
  104.             set { _math = value; }  
  105.         }  
  106.         private int _english;  
  107.         public int English  
  108.         {  
  109.             get { return _english; }  
  110.             set { _english = value; }  
  111.         }  
  112.   
  113.         //方法  
  114.         public void SayHello()  
  115.         {  
  116.             Console.WriteLine("我叫{0},我几年{1}岁了,我是{2}生"this.Name, this.Age, this.Gender);  
  117.         }  
  118.   
  119.         public void ShowScore()  
  120.         {  
  121.             Console.WriteLine("我叫{0},我的总成绩是{1},平均成绩是{2}"this.Name, this.Chinese + this.Math + this.English, (this.Chinese + this.Math + this.English) / 3);  
  122.         }  
  123.   
  124.     }  
  125. }  
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _04面向对象练习  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.   
  14.             //类名   对象名     类构造函数    
  15.             Student s = new Student("张三",100,100,100);  
  16.             Console.ReadKey();  
  17.             
  18.   
  19.   
  20.   
  21.         }  
  22.     }  
  23. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: