News

In this Java challenger, you’ll learn how to compare two String s for equality. Comparing String s is relatively simple, but it’s helpful to know a few additional programming concepts and ...
Both classes behave exactly the same whether the traditional if-then-else is used in conjunction with String.equals (Object) or the new switching on Strings is used.
Motivation Comparing strings in other programming languages is a trivial task. Built-in methods or packages can check for the equality of two inputs in one single call, e.g. String1.equals (String2) ...