作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
iv'尝试使用 for 循环过滤掉 null 和 nan 值,但 nan 值仍被添加到 ListView 中。这只是完成计算的部分。
double rs1 = (qz1 * c11) + (asg1 * c22) + (sw1 * c33) + (prj1 * c44) + (pxm1 * c55) + (atti1 * c66);
if(rs1 != double.NaN || rs1 != null)
{
lst.SubItems.Add(Math.Round(rs1, 2).ToString());
}
else
{
lst.SubItems.Add("0");
}
最佳答案
使用IsNan
static function,了解它here
你的代码应该是这样的
if(!Double.IsNaN(rs1) || rs1 != null)
带有 NaN 的 NaN 将始终返回 false,this is MSDN about NaN
Two NaN values are considered unequal to one another. Therefore, it is not possible to determine whether a value is not a number by using the equality operator to compare it to another value that is equal to NaN
关于c# - 我如何过滤掉 NaN 值并将其替换为另一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21214112/
我正在编写一个快速的 preg_replace 来从 CSS 中删除注释。 CSS 注释通常有这样的语法: /* Development Classes*/ /* Un-comment me for
使用 MySQL,我有三个表: 项目: ID name 1 "birthday party" 2 "soccer match" 3 "wine tasting evening" 4
我是一名优秀的程序员,十分优秀!