本文介绍了C#中的奇怪运算符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,伙计们,你能告诉我这是什么意思吗?我在一篇文章中看到了这个。



公共人员老师
{
得到
{
返回this.teacher ?? (this.teacher = new Teacher());
}
}





我不知道这是什么?

解决方案




Hello guys, could you tell me what is this? I saw this in an article.

public Person Teacher
{
    get
    {
        return this.teacher ?? (this.teacher = new Teacher());
    }
}



I have no idea what is this??

解决方案




这篇关于C#中的奇怪运算符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-24 13:36