java.lang.String.contentEquals(StringBuffer sb)方法实例
java.lang.String.contentEquals(StringBuffer sb) 方法该字符串指定的StringBuffer比较。当且仅当此字符串表示的字符为指定的StringBuffer顺序相同,其结果为 true。
声明
以下是java.lang.String.contentEquals()方法的声明
public boolean contentEquals(StringBuffer sb)
参数
-
sb -- 这是StringBuffer用来比较的字符串。
返回值
如果此字符串表示的字符为指定的StringBuffer,顺序相同此方法返回true,否则返回false。
异常
-
NA
例子
下面的例子显示java.lang.String.contentEquals()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str1 = "amrood admin"; String str2 = "amrood admin"; /* string represents the same sequence of characters as the specified StringBuffer */ StringBuffer strbuf = new StringBuffer(str1); System.out.println("Method returns : " + str2.contentEquals(strbuf)); /* string does not represent the same sequence of characters as the specified StringBuffer */ str2 = str1.toUpperCase(); System.out.println("Method returns : " + str2.contentEquals(strbuf)); } }
让我们来编译和运行上面的程序,这将产生以下结果:
Method returns : true Method returns : false