1、判断条件的时候,要注意空指针的情况
// 以下代码会报空指针
Boolean select = null;
if (select) {
}
// 推荐使用
if (Boolean.TRUE.equals(select)) {
}
2、 ConcurrentHashMap key和value都不支持null
![0bac4290-2b2e-4ae2-93ff-4a6eaac1eb20.jpg](https://upload-images.jianshu.io/upload_images/20850484-fdb91dabf4b30193.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)