9-3 CartServiceImpl的add方法的问题
来源:9-3 加入购物车功能开发2
马斯克2048
2020-06-23
public ServerResponse add(Integer userId,Integer productId,Integer count){
if(productId == null || count == null){
return ServerResponse.createByErrorCodeMessage(ResponseCode.ILLEGAL_ARGUMENT.getCode(),ResponseCode.ILLEGAL_ARGUMENT.getDesc());
}
…
请问老师,这里开头,判断了productId,count是否为null,那为何不判断userId是否为null呢?
写回答
1回答
-
geelylucky
2020-06-23
同学,也可以判断。
00
相似问题
9-3的BigDecimal的问题
回答 1
ssh add
回答 2