大家好,又见面了,我是你们的朋友全栈君。
从概念上讲,Java字符串就是Unicode
字符序列。例如,字符串"Java\u2122"
由5个Unicode
字符J
、a
、v
、a
和™
组成。Java没有内置的字符串类型,而是在标准Java类库中提供了一个预定义类,很自然地叫做String
。每个双引号括起来的字符串都是String类中的一个实例
String e = ""; // an empty string
String greeting = "Hello"
String类的substring方法返回字符串的子字符串。 语法
public String substring(int beginIndex)
或
public String substring(int beginIndex, int endIndex)
参数
例子
public class FirstSample {
public static void main(String[] args) {
String Str = "This is text";
System.out.print("返回值 :" );
System.out.println(Str.substring(4) ); // 从第4个索引开始到结束
System.out.print("返回值 :" );
System.out.println(Str.substring(4, 10) ); // 从第4个索引开始到第10个结束,不包括第10个
}
}
结果
返回值 : is text
返回值 : is te
现在我们知道了substring
的用法,接下来看看源码
/**
* Returns a string that is a substring of this string. The
* substring begins at the specified {@code beginIndex} and
* extends to the character at index {@code endIndex - 1}.
* Thus the length of the substring is {@code endIndex-beginIndex}.
* <p>
* Examples:
* <blockquote><pre>
* "hamburger".substring(4, 8) returns "urge"
* "smiles".substring(1, 5) returns "mile"
* </pre></blockquote>
*
* @param beginIndex the beginning index, inclusive.
* @param endIndex the ending index, exclusive.
* @return the specified substring.
* @exception IndexOutOfBoundsException if the
* {@code beginIndex} is negative, or
* {@code endIndex} is larger than the length of
* this {@code String} object, or
* {@code beginIndex} is larger than
* {@code endIndex}.
*/
// 定义了substring方法,有两个参数beginIndex和endIndex
public String substring(int beginIndex, int endIndex) {
// 如果起始索引小于0,抛出异常
if (beginIndex < 0) {
throw new StringIndexOutOfBoundsException(beginIndex);
}
// 如果结束索引大于值的长度,抛出异常
if (endIndex > value.length) {
throw new StringIndexOutOfBoundsException(endIndex);
}
// 子串的长度
int subLen = endIndex - beginIndex;
// 如果子串的长度小于0,抛出异常
if (subLen < 0) {
throw new StringIndexOutOfBoundsException(subLen);
}
// 如果起始索引等于0并且结束索引等于字符串的长度,那么返回字符串本身,否则创建一个新的字符串
return ((beginIndex == 0) && (endIndex == value.length)) ? this
: new String(value, beginIndex, subLen);
}
与绝大多数程序设计语言一样,Java语言允许使用+号连接(拼接)两个字符串。这个没什么说的。 但是要注意:当将一个个字符串与一个非字符串的值进行拼接时,后者会转换字符串。例如:
int age = 13;
String x = "jkc" + age;
结果是jkc13
如果我们需要把多个字符串放在一起,并用一个界定符分隔,可以使用静态join方法:
public class FirstSample {
public static void main(String[] args) {
System.out.print("返回值 :" );
System.out.println(String.join("/", "A", "B", "C", "D"));
}
}
结果
返回值 :A/B/C/D
join方法有两种重载方法,这里只介绍以下这一种
public static String join(CharSequence delimiter, CharSequence… elements)
String.join("/", "A", "B", "C", "D")
的意思就是用分隔符/
将ABCD这4个字符串连接起来,结果自然就是A/B/C/D
在Java中是不能修改Java字符串中的单个字符的,所以再Java文档中将String类对象称为是不可变的,如果真的想修改,可以提取想保留的子串,再与希望替换的字符拼接:
greeting = greeting.substring(0, 3) + "p!";
可以使用equals
方法检测两个字符串是否相等,语法:
s.equals(t)
如果字符串s与字符串t相等,则返回true;否则,返回false。
要想检测两个字符串是否相等,而不区分大小写,可以使用equalsIsIgnoreCase
方法。
"Hello".equalsIgnoreCase("hello");
注意:一定不要使用==
运算符检测两个字符串是否相等!这个运算符只能够确定两个字符串是否在同一个内存地址上。当然,如果字符串在同一个内存地址上,它们必然相等。但是,完全有可能将内容相同的多个字符串放置在不同的内存地址上。
public class FirstSample {
public static void main(String[] args) {
String greeting = "Hello";
System.out.println("变量greeting的内存地址为:" + System.identityHashCode(greeting));
System.out.println("hello的内存地址为:" + System.identityHashCode(greeting));
if (greeting == "Hello") {
System.out.println("同一个内存地址,相等");
}
String x = greeting.substring(0, 3);
System.out.println("变量x的内存地址:" + System.identityHashCode(x));
if (x == "Hel") {
System.out.println("内存地址不同");
}
}
}
如果虚拟机始终将相同的字符串共享,就可以使用==
运算符检测是否相等。但实际上只有字符串字面量是共享的,而+
或substring
等操作得到的字符串并不共享。因此,千万不要使用==
运算符测试字符串的相等性,以免在程序中出现这种最糟糕的bug,看起来这种bug就像随机产生过的间歇性错误。
空串""
是长度为0的字符串。可以调用以下代码检查一个字符串是否为空:
if (str.length() == 0)
或
if (str.equals(""))
空串是一个Java对象,有自己的串长度(0)和内容(空)。不过String
变量还可以存放一个特殊的值,名为null
,表示目前没有任何对象与该变量关联。要检查一个字符串是否为null,要使用以下条件:
if (str == null)
有时要检查一个字符串既不是null也不是空串,这种情况下就需要使用以下条件:
if (str !=null && str.length() != 0)
首先要检查str不为null,如果在一个null值上调用方法,会出现错误。
Java中的String类包含了50多个方法,接下来介绍一些最常用的方法
java.lang.String 1.0
toArray
将它们放在一个数组中startIndex
和endIndex-1
之间的码点个数
String replace(CharSequence oldString, CharSequence newString)
返回一个新字符串。这个字符串用newString
代替原始字符串中所有的oldString
。可以用String
或StringBuilder
对象作为CharSequence
参数。beginIndex
到字符串末尾或endIndex-1
的所有代码单元 有些时候,需要由较短的字符串构建字符串,例如,按键或来自文件中的单词。如果采用字符串拼接的方式来达到这个目的,效率会比较低。每次拼接字符串时,都会构建一个新的String
对象,既耗时,又浪费空间。使用StringBuilder
类就可以避免这个问题发生。
如果需要用许多小段的字符串来构建一个字符串,那么应该按照下列步骤进行。首先,构建一个空的字符串构建器:
StringBuilder builder = new StringBuilder();
当每次需要添加一部分内容时,就调用append
方法
builder.append("jkc");
builder.append("jkc2");
builder.append("jkc3");
在字符串构建完成时就调用toString
方法,将可以得到一个String
对象,其中包含了构建器中的字符序列。
String completedString = builder.toString();
下面的API包含了StringBuilder
类中的重要方法
offset
位置插入一个字符串并返回this
offset
位置插入一个代码单元并返回this
startIndex
到endIndex-1
的代码单元并返回this发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/164796.html原文链接:https://javaforall.cn