Math.Max 处理三个可为空的值
Posted
技术标签:
【中文标题】Math.Max 处理三个可为空的值【英文标题】:Math.Max handle three nullable values 【发布时间】:2021-08-10 15:50:19 【问题描述】:下面是示例xml文件代码
<?xml version="1.0" encoding="utf-8"?>
<Match>
<IDCIBILDOBMatch>100</IDCIBILDOBMatch>
</Match>
<VerificationScore>
<IDDOBScore>180</IDDOBScore>
<IDAltDOBScore>60</IDAltDOBScore>
</VerificationScore>
我想取Max值,非空值,这样如果所有值都为空,结果为空。
var dobMatchInformation = "";
var idALTDOBSCORE = "";
var idDOBScore = "";
XDocument document = XDocument.Parse(InputRequest);
bool Match_CIBILDOBMatch = document.Descendants("Match").Elements("IDCIBILDOBMatch").Any();
if (Match_CIBILDOBMatch == true)
dobMatchInformation = document.Descendants("Match").Elements("IDCIBILDOBMatch").FirstOrDefault().Value;
var dobscoreInformation = document.Descendants("VerificationScore");
bool Match_AltDOBScore = document.Descendants("VerificationScore").Elements("IDAltDOBScore").Any();
if (Match_AltDOBScore == true)
idALTDOBSCORE = dobscoreInformation.Select(x => x.Element("IDAltDOBScore").Value).Max();
bool Match_DOBScor = document.Descendants("VerificationScore").Elements("IDDOBScore").Any();
if (Match_DOBScor == true)
idDOBScore = dobscoreInformation.Select(x => x.Element("IDDOBScore").Value).Max();
var MAXDOBSCORE = Math.Max(Convert.ToInt32(dobMatchInformation), Math.Max(Convert.ToInt32(idALTDOBSCORE), Convert.ToInt32(idDOBScore)));
Math.Max 计算要处理空值。如果我当前的代码空值出现意味着出错
var MAXDOBSCORE = Math.Max(Convert.ToInt32(dobMatchInformation), Math.Max(Convert.ToInt32(idALTDOBSCORE), Convert.ToInt32(idDOBScore)));
【问题讨论】:
如果这些值是null
,那么问题出在Convert.Int32
上,它将失败。添加null
检查或切换到int.TryParse
。当您成功解析一个值时,将其添加到List<int>
,然后在其上调用Max
,或者如果它为空,则使用null
int?
。
我试过但没用。你能修改我的代码吗@juharr
【参考方案1】:
首先,如果您有一个值,您只需要尝试解析为int
,然后您可以将这些值保存在List<int>
中,然后执行Max
或任何您想要的(如果它为空)。此外,XElement
具有显式转换为 int
,因此您不必获取 Value
然后再进行转换。
XDocument document = XDocument.Parse(InputRequest);
var values = new List<int>();
bool Match_CIBILDOBMatch = document.Descendants("Match").Elements("IDCIBILDOBMatch").Any();
if (Match_CIBILDOBMatch == true)
values.Add((int)dobMatchInformation = document.Descendants("Match").Elements("IDCIBILDOBMatch").FirstOrDefault());
var dobscoreInformation = document.Descendants("VerificationScore");
bool Match_AltDOBScore = document.Descendants("VerificationScore").Elements("IDAltDOBScore").Any();
if (Match_AltDOBScore == true)
values.Add(dobscoreInformation.Select(x => (int)x.Element("IDAltDOBScore")).Max());
bool Match_DOBScor = document.Descendants("VerificationScore").Elements("IDDOBScore").Any();
if (Match_DOBScor == true)
values.Add(idDOBScore = dobscoreInformation.Select(x => (int)x.Element("IDDOBScore")).Max());
var MAXDOBSCORE = values.Any() ? (int?)values.Max() : null;
【讨论】:
以上是关于Math.Max 处理三个可为空的值的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 System.Text.Json 处理可为空的引用类型?
为啥 C# 中的 async/await 会返回可为空的值,即使被告知不要这样做?