Tagged Questions

11
votes
8answers
10k views

Java Strings: compareTo() vs. equals()

When testing for equality of strings in Java I have always used equals() because to me this seems to be the most natural method for it. After all, its name already says what it is intended to do. ...
4
votes
5answers
236 views

What should int compareTo() return when the parameter string is null?

It is said that when input parameter is null, compareTo() should throw a NullPointerException. However, I am implementing a class which needs to compare fields with the type of String. These fields ...
3
votes
2answers
280 views

How do I perform an encoding-independent string-comparison in Java?

I'm having a strange problem comparing strings. I send a string to my server (as bytes using getBytes()) from the client. I've ensured that encoding is the same on the client and server by starting ...
3
votes
8answers
1k views

What is a practical application of Java's compareTo method?

In the Java textbook I'm learning from, it says that this uses "lexicographic ordering" to return an integer. I understand how it works, but what is a specific way this is used in programming?
2
votes
4answers
519 views

java compare to from double to int tostring method

How do i go about using compareto for a double and i want to turn it into an int? An example would be nice. I have been searching the java api. also is it possible to use if and else statements with ...
1
vote
1answer
49 views

Undocumented String.compareTo(null) NPE?

The following little test throws an NPE: public class Test { public static void main(String[] args) { String a = "a"; String b = null; ...
1
vote
3answers
175 views

Creating compareTo method in java with one parameter

I have a question about making a compareTo function in Java. In Java, we have the String.compareTo(String) method. However, I need to make a compareTo function with only only parameter, like: ...
0
votes
4answers
79 views

comparison of String and Integer using compareTo and instanceOf

I have a code snippet which I am not able to understand what exactly it does.. This code is in JavaBean.. private Object myNumb; //then getter and setter for this public int compareTo(myRptObj o){ ...