扫码一下
查看教程更方便
当且仅当此 String 表示与 StringBuffer 中指定的字符序列相同时,此方法才返回 true。
public boolean contentEquals(StringBuffer sb)
sb - 要比较的 StringBuffer。
当且仅当此 String 表示与 StringBuffer 中指定的字符序列相同时,此方法才返回 true。
public class Main { public static void main(String args[]) { String str1 = "Not immutable"; String str2 = "Strings are immutable"; StringBuffer str3 = new StringBuffer( "Not immutable"); boolean result = str1.contentEquals( str3 ); System.out.println(result); result = str2.contentEquals( str3 ); System.out.println(result); } }
上面示例编译运行结果如下
true
false