zoukankan      html  css  js  c++  java
  • java9新特性-11-String存储结构变更

    1. 官方Feature

    JEP254: Compact Strings

     


    2. 产生背景

    Motivation

    The current implementation of the String classstores characters in a char array,using two bytes (sixteen bits) for each character. Data gathered from manydifferent applications indicates that strings are a major component of heapusage and, moreover, that most String objectscontain only Latin-1 characters. Such characters require only one byte ofstorage, hence half of the space in the internal char arraysof such String objects is going unused.

     


    3. 使用说明

    Description

    We propose to change the internal representation of the Stringclass from a UTF-16 char array to a byte array plus an encoding-flag field. The new String 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 再也不用 char[] 来存储啦,改成了 byte[] 加上编码标记,节约了一些空间。

     
     

     


    4. 拓展:StringBuffer 与StringBuilder

    那StringBuffer 和 StringBuilder 是否仍无动于衷呢?

    �String-related classes such as AbstractStringBuilder, StringBuilder, and StringBuffer will

    be updated to use the same representation, as will the HotSpot VM's intrinsic string operations.



    作者:尚硅谷面试官宋红康
    链接:https://www.jianshu.com/p/39ae521056c2
    來源:简书
    著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
  • 相关阅读:
    12.链式法则
    11.感知机
    10.1激活函数及其梯度(softmax求梯度)
    10.损失函数及其梯度(均方差梯度[使用线性函数y=w*x+b作为激活函数])
    9:常见函数以及激活函数的梯度
    8:梯度
    小程序 scroll-view
    小程序swiper
    view 标签
    微信小程序 tab选项卡
  • 原文地址:https://www.cnblogs.com/wzlbigdata/p/8278392.html
Copyright © 2011-2022 走看看