将字符串设置为“”或者将其保留为空?

发布于 2024-08-07 11:03:00 字数 195 浏览 4 评论 0原文

我有一些字符串变量,它们通过调用函数 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

李不 2024-08-14 11:03:00

另一种方法是使用静态 util 方法进行比较。 Apache commons-lang StringUtils.equals(String,String) 是一种可能的空值明确定义的行为。

// null safe compare
if (StringUtils.equals(variable,"hello")) {...}

// is "" or null 
if (StringUtils.isEmpty(variable)) { ... }

// with static imports it's a bit nicer
if (isNotEmpty(var1) && isEmpty(var2)) { ... }

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 safe compare
if (StringUtils.equals(variable,"hello")) {...}

// is "" or null 
if (StringUtils.isEmpty(variable)) { ... }

// with static imports it's a bit nicer
if (isNotEmpty(var1) && isEmpty(var2)) { ... }
睫毛溺水了 2024-08-14 11:03:00

你有三个选择——
如果已知您要比较的项目也不为空(例如常量),则首先使用它。

if ("hello".equals(variable)) { ... }

首先检查是否为null,

if (variable != null && variable.equals("hello")) { ... }

最后如果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.

if ("hello".equals(variable)) { ... }

Check for null first

if (variable != null && variable.equals("hello")) { ... }

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文