Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an arraylist of integer arrayslists and an arraylist of names. I'd like to add a certain number to one of those integer arraylists when it corresponds with a particular name and add a 0 to every other arraylist. I think that what I have should work, but it simply adds a 0 to everything and ignores the special case when the name is right. "Rating" is an integer, and "user" is a string. "Names" is an arraylist of strings. The language is Java.

for(int i = 0; i<names.size(); i++)
            {   

                if (names.get(i)==user)

                    allratings.get(i).add(rating);

                if (names.get(i)!=user) 

                    allratings.get(i).add(0);
            }   

Is there something wrong with my syntax? When I insert a print line, I find that my names arraylist and my allratings arraylist are perfectly matched up. Where am I going wrong?

share|improve this question
1. What language? 2. What type is names? 3. What type is user? Also, why have two if statements? The second one is just an else to the first clause. – David Heffernan Apr 22 '12 at 19:03
This is java. Names is an arraylist of strings, user is a string. I'll add this info. And yes, it was else but that wasn't working, so I switched it thinking that might be it. – WAMoz56 Apr 22 '12 at 19:06
The inside of the for loop can be done in one line: allratings.get(i).add(user.equals(names.get(i)) ? rating : 0); or, split the allratings.get(i) into one line and the add into the other. Your code as it stands has lots of duplication. – David Heffernan Apr 22 '12 at 19:16

5 Answers

up vote 5 down vote accepted

Use .equals() when comparing Strings in Java:

if (user.equals(names.get(i)))

Comparing Strings in Java with == will compare references, which might not be what you want. It seems that the references are different, even though they hold the same string. This is why your condition is always returning false. You want to compare the actual value of the string. This is done with .equals().

share|improve this answer

User is a string, and in Java == isn't for use in string comparisons, as it's comparing the reference (or pointer if you prefer) and not the text content of the string. use:

if (names.get(i).equals(user))
share|improve this answer
Brilliant! Many thanks. – WAMoz56 Apr 22 '12 at 19:14
@WAMoz56 be sure to accept one of the answers – JRaymond Apr 22 '12 at 19:18
@WAMoz56 you should accept his answer then. – Anish Gupta Apr 22 '12 at 19:19
@WAMoz56 (Nice username) accept Oleksi's answer, as he was first, according to SO's order by oldest. – 11684 Apr 29 '12 at 8:31

Note that == compares references. Often, due to the string literal pool maintained by Java, if you compare references, the might return true. If you create a String s = "test" and another String s2 = "test", they both will point to the same reference because of the string pool (this is a Java optimization) and hence return true. Do not do this, though. Be safe and use .equals()!

share|improve this answer

Comparing strings like this doesn't work in Java; because they point to different locations in memory. To fix this, try to intern() them first (which will make them point to the same data in memory), or use the method equals() like:

string1.equals(string2);
share|improve this answer

It looks like the equality test is failing (which is why != is succeeding for each iteration). If the values of 'names.get(i)' and 'user' appear to be the same, perhaps the types are different; does one of those values require a CAST to a different type?

share|improve this answer
Perhaps, names is an arraylist of strings, and user is a string. I'll try a cast though. – WAMoz56 Apr 22 '12 at 19:09
Check the basics: toss in a print (or look in the debugger, as suggested below) to make sure that the values match. Also, make sure that there's not any extra whitespace on either of the strings that could be causing an inequality – Derek Risling Apr 22 '12 at 19:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.