存储在字符串池中的字符串文字是否唯一?

发布于 2024-12-06 23:01:59 字数 71 浏览 1 评论 0原文

我知道字符串可能会被保留,但它是创建新字符串对象时认真执行的操作吗?

Jls 第 3.10.5 节字符串文字。

I understand that Strings may be interned, but it it an action that is performed religiously when a new string object is created?

Jls section 3.10.5 string literals.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

傲世九天 2024-12-13 23:01:59

所有String文字都进入字符串池。否则,您的应用程序必须对 String 调用 intern(),否则它不会进入池中。

String 文字是出现在源代码中的带有双引号的字符串:

String greeting = "Hello, ";
String s = greeting + name;

在此示例中,"Hello, " 是文字字符串。它在实习生池中。它也由变量 greeting 引用。

s 引用的 String 不是文字,也不在实习池中……除非您进行此调用:

s = s.intern();

All String literals go into the string pool. Otherwise, your application must call intern() on the String, or it won't go into the pool.

A String literal is a string that appears in source code with double quotes around it:

String greeting = "Hello, ";
String s = greeting + name;

In this example, "Hello, " is a literal string. It is in the intern pool. It is also referenced by the variable greeting.

The String referred to by s is not a literal, and is not in the intern pool… unless you make this call:

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