博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java中bc是什么,Java中BC系统搭建制作是如何实现字符串的
阅读量:5149 次
发布时间:2019-06-13

本文共 842 字,大约阅读时间需要 2 分钟。

那其实在Java中,关于字符串的实现,其实用的也是char数组,这可以从源码中得到体现。

BC系统搭建制作q<115.28.8.00.9.9>

/**

* Initializes a newly created {@code String} object so that it represents

* the same sequence of characters as the argument; in other words, the

* newly created string is a copy of the argument string. Unless an

* explicit copy of {@code original} is needed, use of this constructor is

* unnecessary since Strings are immutable.

*

* @param  original

*         A {@code String}

*/

public String(String original) {

this.value = original.value;

this.hash = original.hash;

}

这是String类的构造方法,而这个value实际上就是char数组。

/** The value is used for character storage. */

private final char value[];

字符串在内存中的保存方式

我们都知道如何去创建一个字符串,那么, 字符串在内存中的保存方式是怎样的呢?

在内存中有一个区域叫做常量池,而当我们以这样的方式去创建字符串:

String s1 = "abc";

String s2 = "abc";

这个字符串就一定会被保存到常量池中。而Java虚拟机如果发现常量池中已经存在需要创建的字符串中,它就不会重复创建,而是指向那个字符串即可。

转载地址:http://vldnv.baihongyu.com/

你可能感兴趣的文章
从.Net版本演变看String和StringBuilder性能之争
查看>>
Android编程获取网络连接状态(3G/Wifi)及调用网络配置界面
查看>>
Excel操作 Microsoft.Office.Interop.Excel.dll的使用
查看>>
XlFileFormat
查看>>
Windows消息机制(转)1
查看>>
大话设计模式-职责链模式
查看>>
解决Ubuntu下博通网卡驱动问题
查看>>
Oracle中的instead of触发器
查看>>
【翻译】7个ASP.NET MVC最佳实践
查看>>
EF Core 2.1变化
查看>>
转:C++ Applications
查看>>
win7 64位机ODBC的数据源DSN添加和移除问题
查看>>
一个不错的逻辑回归的实例
查看>>
Python第一天
查看>>
css position
查看>>
【bzoj2788】Festival
查看>>
vim简单使用
查看>>
执行gem install dryrun错误
查看>>
Java SE之正则表达式一:概述
查看>>
广义表
查看>>