【读书笔记】Core Java for the Impatient 第一章
##String Never use the == operator to compare strings. The comparison location == "World" // Don’t do that! returns true only if location and "World" are the same object in memory. --- When comparing a string against a literal string, it is a good idea to put the literal string first: ```java if ...