Why is it printing out 0 instead of 1? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why is it printing out 0 instead of 1?

So, I am pretty new to Java. When I was doing some code for fun in the code playground, I decided to make a program that checks if the user input is the same as a word in an array string. However, it didn't work as expected. Here's my code, please take a look. https://code.sololearn.com/c9k5wnrOzfuo/?ref=app In the input part, no matter I type "Hello" or "Amogus", it stills prints 0 even though these words are in the array string. Please tell me, how do I fix it? Thanks!!

17th May 2023, 3:23 PM
Dragon RB
Dragon RB - avatar
9 Answers
+ 5
In Java, == isn’t used to compare strings. Instead, use .equals() function “Hello”.equals(“Hello”); -> true
17th May 2023, 3:38 PM
Ugulberto Sánchez
Ugulberto Sánchez - avatar
+ 2
getin is stored in heap memory(different reference) while the i in the loop is the copy of each reference from array so when we do == in string it actually compares reference not the content https://code.sololearn.com/cgvZ02V1Sb35/?ref=app Ugulberto Sánchez maybe you can go in a depth of java.lang.String I would say that strings in java have much more things to know what I gave is just a small piece ask more if you have further question
18th May 2023, 6:12 AM
I am offline
I am offline - avatar
+ 2
Snehil I also had that experience and that was the solution I found 😅 I’m just starting with java
18th May 2023, 6:32 AM
Ugulberto Sánchez
Ugulberto Sánchez - avatar
+ 1
Ugulberto Sánchez Thank you sir. I am a Python Programmer so it's a little hard to get started with Java.
17th May 2023, 4:06 PM
Dragon RB
Dragon RB - avatar
+ 1
Dragon RB I’m also experiencing that 😅. I had the same question than your before
17th May 2023, 4:07 PM
Ugulberto Sánchez
Ugulberto Sánchez - avatar
+ 1
Ugulberto Sánchez Learning C++ is even more difficult tbh(my opinion). There are lots of things that I haven't discovered in Java . So, guess I'll learn more about this language as possible as I can like Python.. Thanks for the tips again.
17th May 2023, 4:16 PM
Dragon RB
Dragon RB - avatar
+ 1
Ugulberto Sánchez yeah I know that's why I mentioned you too so that I can share my knowledge and when you ask further question there must something new for me.
18th May 2023, 6:48 AM
I am offline
I am offline - avatar
+ 1
We use the .equals() function for comparisons
18th May 2023, 3:27 PM
S M Sifat Hossain
S M Sifat Hossain - avatar
18th May 2023, 3:30 PM
Dragon RB
Dragon RB - avatar