Setter和Getter方法如何工作?

时间:2015-10-08 02:13:32

标签: c#

在开始封装并学习如何使用属性之前,我正在研究Setters和Getters方法 我了解SetIDGetID方法的工作原理,但我对SetNameGetNameGetPassMark方法无法确定。

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

1 个答案:

答案 0 :(得分:3)

因为在创建对象时未设置_Name。因此,Student对象可能会null _Name。您可以通过在构造函数中设置_Name来修复它,然后您可以返回它。

许多人更喜欢使用this,即使它不是必需的,因为它会使代码更加明显。这只是一种语法偏好。