我需要像这样对嵌套方法调用进行空检查:
if (getShopModel() != null && getShopModel().getType() != null)
我认为这不是最好的方法,因为我两次调用 getShopModel 可能会非常昂贵。
有没有更好的方法来检查 getShopModel().getType() ,我只需要调用一次 getShopModel() ?
我需要像这样对嵌套方法调用进行空检查:
if (getShopModel() != null && getShopModel().getType() != null)
我认为这不是最好的方法,因为我两次调用 getShopModel 可能会非常昂贵。
有没有更好的方法来检查 getShopModel().getType() ,我只需要调用一次 getShopModel() ?