StringTable
目录
¶String 基本特性
✨ String
类具有如下基本特性:
String:代表不可变的字符序列,简称:不可变性
1 | public class StringTest { |
通过字面量的方式(区别于 new)给一个字符串赋值,此时的字符串值声明在字符串常量池中。字符串常量池保证不会存储相同内容的字符串
String 的 String Pool 是一个固定大小的 Hashtable,默认值大小长度是 1009。如果放进 String Pool 的 String 非常多,就会造成 Hash 冲突严重,从而导致链表会很长,而链表长了后直接会造成的影响就是当调用String.intern
时性能会大幅下降,使用-XX:StringTablesize
可设置 StringTable 的长度
¶String 存储结构变更
在 JDK 9 及以后,将底层的char[]
转变为byte[]
¶Motivation
The current implementation of the
String
class stores characters in achar
array, using two bytes (sixteen bits) for each character. Data gathered from many different applications indicates that strings are a major component of heap usage and, moreover, that mostString
objects contain only Latin-1 characters. Such characters require only one byte of storage, hence half of the space in the internalchar
arrays of suchString
objects is going unused.
目前 String 类的实现将字符存储在一个char
数组中,每个字符使用两个字节(16 位),从许多不同的应用中收集到的数据表明,字符串是堆使用的主要组成部分,此外,大多数字符串对象只包含 Latin-1 字符,这些字符只需要一个字节的存储空间,因此这些字符串对象的内部字符数组中有一半空间是浪费的
¶Description
We propose to change the internal representation of the
String
class from a UTF-16char
array to abyte
array plus an encoding-flag field. The newString
class will store characters encoded either as ISO-8859-1/Latin-1 (one byte per character), or as UTF-16 (two bytes per character), based upon the contents of the string. The encoding flag will indicate which encoding is used.String-related classes such as
AbstractStringBuilder
,StringBuilder
, andStringBuffer
will be updated to use the same representation, as will the HotSpot VM’s intrinsic string operations.This is purely an implementation change, with no changes to existing public interfaces. There are no plans to add any new public APIs or other interfaces.
The prototyping work done to date confirms the expected reduction in memory footprint, substantial reductions of GC activity, and minor performance regressions in some corner cases.
我们建议将 String 类的内部表示方法从UTF-16
字符数组改为字节数组加编码标志域(编码标志将表明使用的是哪种编码)
新的 String 类将根据字符串的内容,以ISO-8859-1/Latin-1
(每个字符一个字节)或UTF-16
(每个字符两个字节)的方式存储字符编码。
与字符串相关的类,如AbstractStringBuilder
、StringBuilder
和StringBuffer
将被更新以使用相同的表示方法,HotSpot VM 的内在字符串操作也是如此.
这纯粹是一个实现上的变化,对现有的公共接口没有变化。目前没有计划增加任何新的公共 API 或其他接口,迄今为止所做的原型设计工作证实了内存占用的预期减少,GC 活动的大幅减少,以及在某些角落情况下的轻微性能倒退
📓String 不再用char[]
存储改成了byte[]
加上编码标记,节约了一些空间
1 | public final class String implements java.io.Serializable, |
¶String 的内存分配
在 Java 语言中有 8 种基本数据类型和一种比较特殊的类型 String。这些类型为了使它们在运行过程中速度更快、更节省内存,都提供了一种常量池的概念.常量池就类似一个 Java 系统级别提供的缓存,8 种基本数据类型的常量池都是系统协调的
✨String 类型的常量池比较特殊,它的主要使用方法有两种:
¶String table 位置
Jdk6 及以前,字符串常量池存放在永久代
Java 7 中 Oracle 的工程师对字符串池的逻辑做了很大的改变,即将字符串常量池的位置调整到 Java 堆内
🤔 StringTable 位置为什么要调整
Synopsis: In JDK 7, interned strings are no longer allocated in the permanent generation of the Java heap, but are instead allocated in the main part of the Java heap (known as the young and old generations), along with the other objects created by the application. This change will result in more data residing in the main Java heap, and less data in the permanent generation, and thus may require heap sizes to be adjusted. Most applications will see only relatively small differences in heap usage due to this change, but larger applications that load many classes or make heavy use of the
String.intern()
method will see more significant differences.
简介:在 JDK 7 中,内部字符串不再分配在 Java 堆的永久代中,而是分配在 Java 堆的主要部分,与应用程序创建的其他对象一起。这种变化将导致更多的数据驻留在主 Java 堆中,而更少的数据在永久代中,因此可能需要调整堆的大小。大多数应用程序将看到由于这一变化而导致的堆使用的相对较小的差异,但加载许多类或大量使用 String.intern()方法的大型应用程序将看到更明显的差异
¶字符串拼接操作
- 常量与常量的拼接结果在常量池,原理是编译期优化
- 常量池中不会存在相同内容的变量
- 只要其中有一个是变量,结果就在堆中。变量拼接的原理是 StringBuilder
- 如果拼接的结果调用
intern()
方法,则主动将常量池中还没有的字符串对象放入池中,并返回此对象地址
编译器优化的例子:
1 | public static void test1() { |
变量与常量间的拼接操作
1 | public static void test5() { |
- 不实用 final 修饰,即为变量,如 s3 的求解,会通过 new StringBuilder 进行拼接
- 使用
final
关键字修饰,最终变量退化为常量,会在编译器进行代码优化,在实际开发中,能够使用 final 的地方尽量使用
1 | public void test6(){ |
在大量的实验验证下,通过 StringBuilder 的 append 方式的速度,要比直接对 String 使用+
拼接的方式快大约 8000 倍,比 StringBuffer 的 append 方法快 4 倍左右,在实际开发中,对于需要多次或大量拼接的操作,在不考虑线程安全问题时,我们就应该尽可能使用 StringBuilder 进行 append 操作。并且如果提前知道需要拼接 String 的个数,就应该直接使用带参构造器指定 capacity,以减少扩容次数
¶inter()的使用
当调用 intern 方法时,如果池子里已经包含了一个与这个 Strin·g 对象相等的字符串,正如 equals(Object)方法所确定的,那么池子里的字符串会被返回。否则,这个 String 对象被添加到池中,并返回这个 String 对象的引用
由此可见,对于任何两个字符串 s 和 t,当且仅当 s.equals(t)为真时,s.intern() == t.intern()为真,所有字面字符串和以字符串为值的常量表达式都是interned
,返回一个与此字符串内容相同的字符串,但保证是来自一个唯一的字符串池
¶G1 的 String 去重操作
1 | //需要s1、s2j |
string 池子的操作,String s = new string(“hello world”)有几个对象生成,生成对象的 s 存放在哪里
¶附录
new String(“123”) 创建了几个对象?
String s=new String(“abc”)创建了几个对象?
面试题之 String str = new String(“abc”); 创建了几个对象
官方表名更改 String 源码原因
Java 函数传参(String 的不可变性)
StringTable 调整官方说明
StringBuffer 和 StringBuilder 的区别
String a="123"创建对象个数问题