Yoda conditionsIn programming jargon, Yoda conditions (also called Yoda notation) is a programming style where the two parts of an expression are reversed from the typical order in a conditional statement. A Yoda condition places the constant portion of the expression on the left side of the conditional statement. Yoda conditions are part of the coding standards for Symfony[1] and WordPress.[2] OriginThe name for this programming style is derived from the Star Wars character Yoda, who speaks English with a non-standard syntax[3] (e.g., "When 900 years old you reach, look as good you will not."[4][5]). Thomas M. Tuerke claims to have coined the term Yoda notation and first published it online in 2006.[6] According to him, the term Yoda condition was later popularized by Félix Cloutier in 2010. ExampleUsually a conditional statement would be written as: if ($value == 42) { /* ... */ }
// Reads like: "If the value equals 42..."
Yoda conditions describe the same expression, but reversed: if (42 == $value) { /* ... */ }
// Reads like: "If 42 equals the value..."
AdvantageReadability of logically-chained comparisonsSome languages, such as Python, support "chained" comparison operators ("comparators") in their syntax.[7] Thus, the following lines are logically equivalent: # Using chained comparators:
if 3.14 < y <= 42: ...
# Logically equivalent to:
if (3.14 < y) and (y <= 42): ...
Notice that the second form naturally uses Yoda syntax in the left-hand comparison ( if (y > 3.14) and (y <= 42): ...
When handwriting math, many authors prefer the "chained" notation (example, example). When programming in a language that does not literally support the chained notation, the author may prefer the Yoda syntax, as it at least visually evokes the familiar chained notation. Detecting programmer mistakesFor symmetric comparisons, such as equality, swapping the left and right operands does not change the behavior of the program. In programming languages that use a single equals sign ( if (myNumber = 42) { /* ... */ }
// This assigns 42 to myNumber instead of evaluating the desired condition
Using Yoda conditions: if (42 = myNumber) { /* ... */ }
// An error this is and compile it will not
Since literal expressions such as Boolean myBoolean = null;
if (myBoolean == true) { /* ... */ }
// This causes a NullPointerException in Java Runtime, but legal in compilation.
// This happens because Java will try to call myBoolean.booleanValue() on a null Object.
Changing the target of dynamic dispatchIn most object-oriented programming languages, the receiver of a method call is written to the left of the call's other arguments. At the same time, in non-Yoda comparisons, the variable that is the subject of comparison is written on the left-hand side. Comparison method calls are thus ordinarily dynamically dispatched on the object being compared, which is not always desirable. String myString = null;
if (myString.equals("foobar")) { /* ... */ }
// This causes a NullPointerException in Java
With Yoda conditions, the call can be dispatched on a constant object instead. String myString = null;
if ("foobar".equals(myString)) { /* ... */ }
// This resolves to false without throwing a NullPointerException
CriticismYoda conditions are criticized for compromising readability by increasing the cognitive load of reading the code.[8][9][10] Some programming languages (such as Swift, Kotlin and versions of Python below 3.8) do not allow variable assignments within conditionals—for example by requiring that assignments do not return a value, or by defining as part of their grammar the invariant that conditions cannot contain assignment statements—in which case this error is impossible to encounter (that is, it would be detected as a syntax error by the parser prior to a program ever being allowed to enter into runtime).[11] Many compilers produce a warning for code such as Another disadvantage appears in C++ when comparing non-basic types as the == is an operator and there may not be a suitable overloaded operator function defined. Example: a Microsoft's References
External linksLook up Yoda condition in Wiktionary, the free dictionary.
|