对象在传递给C#中的属性时变为null

Mel*_*Mel 4 c# null properties object

我有一个抽象类Employee和另外两个扩展它的类(Developer和Manager).我的问题是每当我创建一个Manager时

Employee man = new Manager(1234567, 30, "Bob", "Pie")
Run Code Online (Sandbox Code Playgroud)

并尝试在新开发人员的Manager字段中设置它,

Employee codemonkey = new Developer(1234568, 20, "Code", "Monkey", (Manager)man)
Run Code Online (Sandbox Code Playgroud)

我一直得到我的经理为空的ArgumentException.我做了一些检查,当我尝试使用构造函数中的Manager属性设置它时,它会以某种方式变为null.任何关于我为什么会收到这个错误的建议都将不胜感激.TIA!

每个代码如下:

//员工类

public abstract class Employee
{
    string firstName, lastName;
    int id, yearsEmployed;

    //Names must be non-empty
    public string FirstName
    {
        get { return firstName; }
        set
        {
            if (!value.Equals(""))
            {
                firstName = value;
            }
            else
                throw new ArgumentException("name cannot be empty");
        }
    }
    public string LastName
    {
        get { return lastName; }
        set
        {
            if (!value.Equals(""))
            {
                lastName = value;
            }
            else
                throw new ArgumentException("name cannot be empty");
        }
    }
    // IDs must be strings consisting of exactly seven digits.
    public int ID
    {
        get { return id; }
        set
        {
            if (value.ToString().Length == 7)
            {
                id = value;
            }
            else
                throw new ArgumentException("ID must consist of 7 digits");
        }
    }
    // Years employed must always be non-negative.
    public int YearsEmployed
    {
        get { return yearsEmployed; }
        set
        {
            if (value >= 0)
            {
                yearsEmployed = value;
            }
            else
                throw new ArgumentException("Year employed must be non-negative");
        }
    }
    //Constructor
    public Employee(int id, int yearsEmployed,
                    string firstName, string lastName)
    {
        this.FirstName = firstName;
        this.LastName = lastName;
        this.ID = id;
        this.YearsEmployed = yearsEmployed;
    }
    public abstract int GetLevel { get; }
    public abstract string GetTitle { get; }
    public string GetFullTitle { get { return GetTitle + " " + GetLevel; } }
}
Run Code Online (Sandbox Code Playgroud)

//开发人员类:

 public class Developer : Employee
{
    Manager manager;

    //Manager cannot be null
    public Manager Manager
    {
        get { return manager; }
        set
        {
            if (manager != null)
            {
                manager = value;
            }
            else
                throw new ArgumentException("Manager cannot be null");
        }
    }

    //Constructor
    public Developer(int id, int yearsEmployed, string firstName,
                    string lastName, Manager manager)
        : base(id, yearsEmployed, firstName, lastName)
    {
        Console.WriteLine("manager is not null:" + manager != null); //True here
        this.Manager = manager; // manager is null here
    }

    public override int GetLevel
    {
        get { return (this.YearsEmployed + 1) / 3; }
    }

    public override string GetTitle
    {
        get { return "Developer"; }
    }
}
Run Code Online (Sandbox Code Playgroud)

//经理班

public class Manager : Employee
{
    //Constructor
    public Manager(int id, int yearsEmployed,
                    string firstName, string lastName)
        : base(id, yearsEmployed, firstName, lastName) { }

    public override int GetLevel
    {
        get { return (YearsEmployed + 1) / 2; }
    }

    public override string GetTitle
    {
        get { return "Manager"; }
    }
}
Run Code Online (Sandbox Code Playgroud)

Ada*_*and 9

你不想说:

if (value != null)
Run Code Online (Sandbox Code Playgroud)

代替

if (manager != null)
Run Code Online (Sandbox Code Playgroud)

manager字段将初始化为null.value关键字表示传递给属性的数据.