将字符串设置为“”或者将其保留为空?
我有一些字符串变量,它们通过调用函数 getParameter()
获取值,其中一些变量可能为 null
。
稍后,我将使用 equals() 方法评估该变量。 如果所有字符串变量为 null
,我是否应该将它们设置为空字符串 (""
) 以避免出现任何问题?
I have some String variables which are getting the values from invoking the function getParameter()
and some of this variables will probably be null
.
Later, I will evaluate this variables using equals()
method.
Should I set all the String variables to the empty String (""
) if they are null
to avoid any problems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
另一种方法是使用静态 util 方法进行比较。 Apache commons-lang StringUtils.equals(String,String) 是一种可能的空值明确定义的行为。
An alternative to is to use a static util method to do the compare. Apache commons-lang StringUtils.equals(String,String) is a possible with clearly defined behaviour for nulls.
你有三个选择——
如果已知您要比较的项目也不为空(例如常量),则首先使用它。
首先检查是否为null,
最后如果null和空字符串可以认为是同一个下游,则将字符串设置为空字符串。但如果您希望以不同的方式处理 null,则不能这样做。
You have three options -
If the item you are comparing too is known not to be null (e.g. a constant) then use that first.
Check for null first
Finally if null and the empty string can be considered the same down stream then set the string to the empty string. But if you wish to handle null differently then you can not do this.