StringBuffer sb1 = new StringBuffer("Java");
StringBuffer sb2 = new StringBuffer("Java");
System.out.println(sb1 == sb2);
System.out.println(sb1.equals(sb2));
Here both are returning false. How is it possible?
Here both are returning false. How is it possible?
| ||||
|
feedback
|
|
The | |||
|
feedback
|
|
You are comparing the references to the StringBuffer objects rather than the actual strings within the StringBuffer.
| |||
|
feedback
|
|
| |||
|
feedback
|
|
both compares two references to objects (sb1 is one, and sb2 is second), thus both are different. If You are trying to compare content - use method compareTo(...) in String class - that is - first get String content of StringBuffer using method toString() (.toString().compareTo). Ps. as of JDK 5, there is another much faster class that behaves exactly as StringBuffer - it is StringBuilder
| |||||||||
feedback
|
|
The simple answer is that StringBuffer (and StringBuilder) do not redefine the base semantics of Object.equals(). So In fact, String, StringBuffer, StringBuilder and CharBuffer all implement the CharSequence interface, and the javadoc for this interface says this:
| |||
|
feedback
|
|
Wondering why | |||
|
feedback
|