Java String contentEquals()方法當且僅當此String
表示與StringBuffer
中指定的字元序列相同時,此方法才返回true
。
語法
以下是此方法的語法 -
public boolean contentEquals(StringBuffer sb)
sb
- 要比較的StringBuffer
。當且僅當此String
表示與StringBuffer
中指定的字元序列是相同的字元序列時,此方法才返回true
,否則返回false
。
public class Test {
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