- 博客(2)
- 收藏
- 关注
原创 设计模式 - 去除if else 的策略模式
设计模式 - 去除if else 的策略模式 前端项目中丑陋冗长的if else if (str.includes("LonglinA")) { routers(LonglinA) } else if (str.includes("LonglinB")) { routers(LonglinB) } else if (str.includes("LonglinC")) { routers(LonglinC) } else if (str.include
2022-02-18 17:47:56
1173
原创 Java8 Optional理解
Optional的出现我认为是优雅的处理NPE问题的一个好方法。 在之前我处理NPE(Null Pointer Exceptio)问题的都这样的这样写 User user = new User() if(user!=null){ return user.getOrders(); }else{ return Collections.emptyList(); } 可以说是非常丑陋了,但是如果用Optional可以这样写 Opt.
2022-01-08 15:11:16
255
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人