关于isEmpty 和 isBlank 下列哪项是对的
isEmpty(null) = true
isEmpty("") = true
isEmpty(" ") = true
isEmpty("bob") = true
isBlank("") = true
isBlank(" ") = true
isBlank("bob") = true
isBlank(null) = true
发表评论