compareToIgnoreCase() 方法用于按字典顺序比较两个字符串,不考虑大小写。 语法 int compareToIgnoreCase(String str) 参数 str -- 要比较的字符串。 返回值 如果参数字符串等于此字符串,则返回值...
concat() 方法用于将指定的字符串参数连接到字符串上。 语法 public String concat(String s) 参数 s -- 要连接的字符串。 返回值 返回连接后的新字符串。 实例 public class Test {public static void mai...
contentEquals() 方法用于将此字符串与指定的 StringBuffer 比较。 语法 public boolean contentEquals(StringBuffer sb) 参数 sb -- 要与字符串比较的 StringBuffer。 返回值 如字符串与指定 StringBuffer 表示相同...
copyValueOf() 方法有两种形式: public static String copyValueOf(char[] data): 返回指定数组中表示该字符序列的字符串。 public static String copyValueOf(char[] data, int offset, int count): 返回指定数组中表示该...
copyValueOf() 方法有两种形式: public static String copyValueOf(char[] data): 返回指定数组中表示该字符序列的字符串。 public static String copyValueOf(char[] data, int offset, int count): 返回指定数组中表示该...
endsWith() 方法用于测试字符串是否以指定的后缀结束。 语法 public boolean endsWith(String suffix) 参数 suffix -- 指定的后缀。 返回值 如果参数表示的字符序列是此对象表示的字符序列的后缀,...
equals() 方法用于将字符串与指定的对象比较。 String 类中重写了 equals() 方法用于比较两个字符串的内容是否相等。 语法 public boolean equals(Object anObject) 参数 anObject -- 与字符串进行比较的...
equalsIgnoreCase() 方法用于将字符串与指定的对象比较,不考虑大小写。 语法 public boolean equalsIgnoreCase(String anotherString) 参数 anObject -- 与字符串进行比较的对象。 返回值 如果给定对象与字...
getBytes() 方法有两种形式: getBytes(String charsetName): 使用指定的字符集将字符串编码为 byte 序列,并将结果存储到一个新的 byte 数组中。 getBytes(): 使用平台的默认字符集将字符串编码为...
getBytes() 方法有两种形式: getBytes(String charsetName): 使用指定的字符集将字符串编码为 byte 序列,并将结果存储到一个新的 byte 数组中。 getBytes(): 使用平台的默认字符集将字符串编码为...