深入了解Java核心类库--String类
程序员文章站
2022-03-12 23:32:16
目录一、 简介零碎知识点 extends object implements serializable,comparable< string >,charseq...
一、 简介
零碎知识点
- extends object
- implements serializable,comparable< string >,charsequence
- string类表示字符串,所有字符串文字都是此类的对象
- 字符串是不变的,值在创建后无法更改
- 对象一旦声明则不可改变,改变的只是地址,原来的字符串还是存在的,并且产生垃圾
- 任何一个“”都为字符串对象,无赋值则为匿名对象
- 用“+”拼接字符串尽量避免,一般用append+tostring
- stringbuilder(线程不安全)和stringbuffer(线程安全),忽略线程安全,其它都一样
由于string对象是不可变的,所以可以共享(即两个字符串一样则共享同一块内存地址)
//共享 string t1 = "123"; string t2 = "123"; system.out.ptintln(t1 == t2);//true,(== 比较的是内存地址)
字符串常量池
存在于方法区(加载代码的内存区),被所有的线程共享
堆在逻辑上的划分
堆在逻辑上被分为三部分:
新生代:存储刚创建的对象(gc询问次数最多为15次,>15则进入老年代)
老年代:垃圾回收次数超过15次(即15次之后依然存活的对象)
永久代:静态修饰的所有东西(类、方法、常量…)
每一个字符串对象的创建都会放入永久代(每次创建都先去永久代,前提:不用new,new开辟新内存)
二、 创建对象
2.1.1 直接引用常量区
string s = " ";
string str = “abc” ;
2.1.2 使用构造方法
string()
string str = new string(“abc”);
2.1.3 两种实例化方法的区别
区别
直接赋值:
只开辟一块堆内存空间,并且会自动入池,不会产生垃圾会将匿名对象“”放入对象池,下一次不同对象直接赋值时直接利用池中已经存在的匿名对象
构造方法:
在堆内存创建对象会开辟两块堆内存空间,其中一块堆内存会变成垃圾被系统回收,而且不能够自动入池,需要通过public string intern();方法进行手工入池。
三、常用方法
modifier and type | method | description |
---|---|---|
char | charat(int index) | 返回指定索引处的 char值。 |
int | compareto(string anotherstring) | 按字典顺序比较两个字符串。 |
boolean | endswith(string suffix) | 测试此字符串是否以指定的后缀结尾。 |
boolean | equals(object anobject) | 将此字符串与指定的对象进行比较。 |
boolean | equalsignorecase(string anotherstring) | 将此 string与另一个 string比较,忽略了大小写。 |
void | getchars(int srcbegin, int srcend, char[] dst, int dstbegin) | 将此字符串中的字符复制到目标字符数组中。 |
int | indexof(int ch) | 返回指定字符第一次出现的字符串中的索引。 |
int | indexof(int ch, int fromindex) | 返回指定字符第一次出现的此字符串中的索引,从指定索引处开始搜索。 |
int | indexof(string str) | 返回指定子字符串第一次出现的字符串中的索引。 |
int | indexof(string str, int fromindex) | 从指定的索引处开始,返回指定子字符串第一次出现的字符串中的索引。 |
boolean | isempty() | 返回 true ,当且仅当, length()是 0 。 |
int | lastindexof(int ch) | 返回指定字符最后一次出现的字符串中的索引。 |
int | lastindexof(int ch, int fromindex) | 返回指定字符最后一次出现的字符串中的索引,从指定的索引开始向后搜索。 |
int | lastindexof(string str) | 返回指定子字符串最后一次出现的字符串中的索引。 |
int | lastindexof(string str, int fromindex) | 返回指定子字符串最后一次出现的字符串中的索引,从指定索引开始向后搜索。 |
int | length() | 返回此字符串的长度。 |
string | repeat(int count) | 返回一个字符串,其值为此字符串的串联重复 count次。 |
string | replace(charsequence target, charsequence replacement) | 将此字符串中与文字目标序列匹配的每个子字符串替换为指定的文字替换序列。 |
string | replaceall(string regex, string replacement) | 将给定替换的给定 regular expression匹配的此字符串的每个子字符串替换。 |
string | replacefirst(string regex, string replacement) | 将给定替换的给定 regular expression匹配的此字符串的第一个子字符串替换。 |
boolean | startswith(string prefix) | 测试此字符串是否以指定的前缀开头。 |
boolean | startswith(string prefix, int toffset) | 测试从指定索引开始的此字符串的子字符串是否以指定的前缀开头。 |
string | stripleading() | 返回一个字符串,其值为此字符串,并删除了所有前导 white space 。 |
string | striptrailing() | 返回一个字符串,其值为此字符串,并删除所有尾随 white space 。 |
charsequence | subsequence(int beginindex, int endindex) | 返回作为此序列的子序列的字符序列。 |
string | substring(int beginindex) | 返回一个字符串,该字符串是此字符串的子字符串。 |
string | substring(int beginindex, int endindex) | 返回一个字符串,该字符串是此字符串的子字符串。 |
char[] | tochararray() | 将此字符串转换为新的字符数组。 |
string | tolowercase() | 使用默认语言环境的规则将此 string所有字符转换为小写。 |
string | touppercase() | 使用默认语言环境的规则将此 string所有字符转换为大写。 |
string | touppercase(locale locale) | 使用给定 locale的规则将此 string所有字符转换为大写。 |
static string | valueof(t i) | 返回t参数的字符串表示形式。 |
总结
本篇文章就到这里了,希望能给你带来帮助,也希望您能够多多关注的更多内容!
下一篇: Python实现端口扫描器的示例代码