Hmm, that i don't get
I thought Java had get rid of the '=' use as a logical operator?
Could u explain the logical steps please?
myValue is a String, in this case a reference for the actual String, while VALUE_ONE is a constant, but still, from the statement, what i get is it actually create a reference for a class instance right?
Then (myValue = VALUE_ONE) means putting the reference of VALUE_ONE into (in this term,
as) the reference of myValue, but that doesnt return a Boolean right?
How come u were able to use the logical statement in an if clause then if it didn't return a boolean?
