相关文章推荐
朝气蓬勃的火柴  ·  Nat. Comm. | ...·  2 周前    · 
小胡子的小虾米  ·  MySQL ...·  5 月前    · 
沉着的斑马  ·  Gitlab on ...·  11 月前    · 
String s1 = " Runoob " ; // String 直接创建 String s2 = " Runoob " ; // String 直接创建 String s3 = s1 ; // 相同引用 String s4 = new String ( " Runoob " ) ; // String 对象创建 String s5 = new String ( " Runoob " ) ; // String 对象创建
public class StringDemo { public static void main ( String args [ ] ) { char [ ] helloArray = { ' r ' , ' u ' , ' n ' , ' o ' , ' o ' , ' b ' } ; String helloString = new String ( helloArray ) ; System . out . println ( helloString ) ;

以上实例编译运行结果如下:

runoob 注意: String 类是不可改变的,所以你一旦创建了 String 对象,那它的值就无法改变了(详看笔记部分解析)。

如果需要对字符串做很多修改,那么应该选择使用 StringBuffer & StringBuilder 类

字符串长度

用于获取有关对象的信息的方法称为访问器方法。

String 类的一个访问器方法是 length() 方法,它返回字符串对象包含的字符数。

下面的代码执行后,len 变量等于 14:

StringDemo.java 文件代码:

public class StringDemo { public static void main ( String args [ ] ) { String site = " www.runoob.com " ; int len = site . length ( ) ; System . out . println ( " 菜鸟教程网址长度 : " + len ) ;

以上实例编译运行结果如下:

菜鸟教程网址长度 : 14

连接字符串

String 类提供了连接两个字符串的方法:

string1 . concat ( string2 ) ;
返回 string2 连接 string1 的新字符串。也可以对字符串常量使用 concat() 方法,如:
"我的名字是 ".concat("Runoob");
更常用的是使用'+'操作符来连接字符串,如:

"Hello," + " runoob" + "!" 结果如下:

"Hello, runoob!" 下面是一个例子:

StringDemo.java 文件代码:

public class StringDemo { public static void main ( String args [ ] ) { String string1 = " 菜鸟教程网址: " ; System . out . println ( " 1、 " + string1 + " www.runoob.com " ) ;

以上实例编译运行结果如下:

1、菜鸟教程网址:www.runoob.com

创建格式化字符串

我们知道输出格式化数字可以使用 printf() 和 format() 方法。

String 类使用静态方法 format() 返回一个String 对象而不是 PrintStream 对象。

String 类的静态方法 format() 能用来创建可复用的格式化字符串,而不仅仅是用于一次打印输出。

如下所示:

System . out . printf ( " 浮点型变量的值为 " + " %f, 整型变量的值为 " + " %d, 字符串变量的值为 " + " is %s " , floatVar , intVar , stringVar ) ;

你也可以这样写

String fs ; fs = String . format ( " 浮点型变量的值为 " + " %f, 整型变量的值为 " + " %d, 字符串变量的值为 " + " %s " , floatVar , intVar , stringVar ) ;

String 方法

下面是 String 类支持的方法,更多详细,参看 Java String API 文档:

boolean regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len)
测试两个字符串区域是否相等。 boolean regionMatches(int toffset, String other, int ooffset, int len)
测试两个字符串区域是否相等。 String replace(char oldChar, char newChar)
返回一个新的字符串,它是通过用 newChar 替换此字符串中出现的所有 oldChar 得到的。 String replaceAll(String regex, String replacement)
使用给定的 replacement 替换此字符串所有匹配给定的正则表达式的子字符串。 String replaceFirst(String regex, String replacement)
使用给定的 replacement 替换此字符串匹配给定的正则表达式的第一个子字符串。 String[] split(String regex)
根据给定正则表达式的匹配拆分此字符串。 String[] split(String regex, int limit)
根据匹配给定的正则表达式来拆分此字符串。 boolean startsWith(String prefix)
测试此字符串是否以指定的前缀开始。 boolean startsWith(String prefix, int toffset)
测试此字符串从指定索引开始的子字符串是否以指定前缀开始。 CharSequence subSequence(int beginIndex, int endIndex)
返回一个新的字符序列,它是此序列的一个子序列。 String substring(int beginIndex)
返回一个新的字符串,它是此字符串的一个子字符串。 String substring(int beginIndex, int endIndex)
返回一个新字符串,它是此字符串的一个子字符串。 char[] toCharArray()
将此字符串转换为一个新的字符数组。 String toLowerCase()
使用默认语言环境的规则将此 String 中的所有字符都转换为小写。 String toLowerCase(Locale locale)
使用给定 Locale 的规则将此 String 中的所有字符都转换为小写。 String toString()
返回此对象本身(它已经是一个字符串!)。 String toUpperCase()
使用默认语言环境的规则将此 String 中的所有字符都转换为大写。 String toUpperCase(Locale locale)
使用给定 Locale 的规则将此 String 中的所有字符都转换为大写。 String trim()
返回字符串的副本,忽略前导空白和尾部空白。 static String valueOf(primitive data type x)
返回给定data type类型x参数的字符串表示形式。 contains(CharSequence chars)
判断是否包含指定的字符系列。 isEmpty()
判断字符串是否为空。

从结果上看是改变了,但为什么说 String 对象是不可变的呢?

原因在于实例中的 s 只是一个 String 对象的引用,并不是对象本身,当执行 s = "Runoob"; 创建了一个新的对象 "Runoob",而原来的 "Google" 还存在于内存中。

tianqixin