1

我有以下代码。它工作正常。没有例外等。我正在循环使用标准查询检索到的 JPA 实体对象列表(因此null列表中没有任何对象)。

for (PeriodicalTable periodical : resultsP){
        stringFor.add(periodical.getReference());
        site = em.find(SiteTable.class, periodical.getSiteID());
        if (site != null && site.getPostcode() != null && !site.getPostcode().equals("")){
            tempString = site.getPostcode().replaceAll("\\s+", " ");
            periodical.setPostcode(tempString.trim());                       
            }    
        }

现在,我添加了一条语句,这样只有在被循环的列表中的对象具有of 时if才会触发一行。标记如下;contractManagerID0

for (PeriodicalTable periodical : resultsP){
        if(periodical.getContractManagerID()==0) //<---- HERE!!!!
        {
            stringFor.add(periodical.getReference());
        }
        site = em.find(SiteTable.class, periodical.getSiteID());           
        if (site != null && site.getPostcode() != null && !site.getPostcode().equals("")){
            tempString = site.getPostcode().replaceAll("\\s+", " ");
            periodical.setPostcode(tempString.trim());                       
            }                
        }

经过一些调试后,我将异常隔离为来自 if 语句本身(标记为“HERE”),但我不明白这是怎么回事。我们知道列表中没有null对象,否则即使没有 if 语句它也无法工作,但没有它它也能正常工作。我完全迷路了。

4

2 回答 2

4

这里唯一的可能periodical.getContractManagerID()就是返回null

比较null == 0会给你一个NullPointerException.

改为这样做:

if (periodical.getContractManagerID() == null || 
    periodical.getContractManagerID() == 0)
于 2013-09-24T08:31:59.317 回答
1

有一种相当简单的方法可以找出答案:

  • HERE行中设置断点。当 Eclipse(我假设您使用 Eclipse)调试器弹出时,选择periodical变量并按下Ctrl + Shift + I(这称为“检查”)。如果它不为空,则评估periodical.getContractManagerID()。应该是null

这意味着您没有使用原语来存储该数字。您应该使用原语,添加合理的默认值或检查null.

如果您的班级中有一个IntegerPeriodicalTable这意味着它可以是null.

于 2013-09-24T09:36:07.047 回答