在开始封装并学习如何使用属性之前,我正在研究Setters和Getters方法
我了解SetID
和GetID
方法的工作原理,但我对SetName
,GetName
和GetPassMark
方法无法确定。
using System;
public class Student
{
private int _id;
private string _Name;
private int _PassMark = 35;
public void SetId(int Id)
{
if (Id<=0)
{
throw new Exception("Student Id cannot be negative");
}
this._id = Id;
}
public int GetId()
{
return this._id;
}
public void SetName(string Name)
{
if(string.IsNullOrEmpty(Name))
{
throw new Exception("Name cannot be null or empty");
}
this._Name = Name;
}
public string GetName()
{
if(string.IsNullOrEmpty(this._Name))
{
return "No Name";
}
else
{
return this._Name;
}
}
public int GetPassMark()
{
return this._PassMark;
}
}
public class Program
{
public static void Main()
{
Student C1 = new Student();
C1.SetId(101);
C1.SetName("Mark");
Console.WriteLine("ID = {0}" , C1.GetId());
Console.WriteLine("Student Name = {0}", C1.GetName());
Console.WriteLine("PassMark = {0}", C1.GetPassMark());
}
}
当我查看SetName
时,我明白如果字符串为空或为空,我们会抛出异常,否则this._Name = Name
。
但是当我查看GetName
时,我并不真正理解为什么会有if语句
如果Name为null或为空,则我们在this._Name
中抛出异常时不会SetName
。
我们不能在GetName中写下return this._Name
吗?
同样在GetPassMark
方法中,为什么this.
需要return this._PassMark
?
答案 0 :(得分:3)
因为在创建对象时未设置_Name
。因此,Student
对象可能会null
_Name
。您可以通过在构造函数中设置_Name
来修复它,然后您可以返回它。
许多人更喜欢使用this
,即使它不是必需的,因为它会使代码更加明显。这只是一种语法偏好。