
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
Java.lang.String.contentEquals() Method
Description
The java.lang.String.contentEquals(StringBuffer sb) method compares this string to the specified StringBuffer. The result is true if and only if this String represents the same sequence of characters as the specified StringBuffer.
Declaration
Following is the declaration for java.lang.String.contentEquals() method
public boolean contentEquals(StringBuffer sb)
Parameters
sb − This is the StringBuffer to compare this String against.
Return Value
This method returns true if this String represents the same sequence of characters as the specified StringBuffer, else false.
Exception
NA
Example
The following example shows the usage of java.lang.String.contentEquals() method.
package com.tutorialspoint; 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)); } }
Let us compile and run the above program, this will produce the following result −
Method returns : true Method returns : false
java_lang_string.htm
Advertisements