作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我知道左侧将失败但如果左侧通过则右侧将被实例化,我能否将尚未实例化的 object.property 放在“AND”运算符的右侧?
在下面的示例中,第一个 if/else 语句为上述问题设置了另一个 if 语句。虽然我已经测试过它没有显示错误,但我想知道幕后发生了什么,或者有没有更好的方法。(有很多 if/else 语句使用第一个 if/else 语句的结果。
if (_articleGuid.Equals(Guid.Empty))
{
isArticleGuid = false;
}
else
{
article = new Article(Guid.Empty, _articleGuid);
bodyText = article.Text;
articleDate = Convert.ToDateTime(article.DateActive);
isArticleGuid = true;
}
if(isArticleGuid && article.Author != null)
{
divAuthor.InnerText = article.Author;
}
最佳答案
假设我理解正确,这是安全的。 article
变量需要明确赋值,但语言保证如果 &&
运算符的 LHS 表达式的计算结果为 false,则不会计算 RHS 表达式 -所以您不会得到 NullReferenceException
。
来自 C# 3.0 语言规范,第 7.11 节:
The operation
x && y
corresponds to the operationx & y
, except thaty
is evaluated only ifx
is not false.
关于c# - 整理 if 语句 - 未实例化的对象是否可以在 AND 运算符中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2325132/
我是一名优秀的程序员,十分优秀!