Here is my code snippet:
public void joinRoom(String room) throws MulticasterJoinException { String statusCheck = this.transmit("room", "join", room + "," + this.groupMax + "," + this.uniqueID); if (statusCheck != "success") { throw new MulticasterJoinException(statusCheck, this.PAppletRef); } } However for some reason, if (statusCheck != "success") is returning false, and thereby throwing the MulticasterJoinException.
Stringequality) during interviews. It's not often someone can answer when == works and when it doesn't (and how to make it work again).