Jump to content

Yoda conditions

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by VanishedUser sdu9aya9fs787sads (talk | contribs) at 21:43, 22 December 2014 (→‎External links: Correct spelling.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In 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. The name for this programming style is derived from the Star Wars character named Yoda, who spoke English in a non-standard syntax.

Yoda conditions are part of the WordPress coding standards.[1]

Example

Usually a conditional statement would be written as:

if ( $value == 52 ) { /* ... */ }
// Reads like: "If the value is equal to 52..."

Yoda conditions describe the same expression, but reversed:

if ( 52 == $value ) { /* ... */ }
// Reads like: "If 52 equals the value..."

The constant is written to the left of the comparison operator, and the variable whose value is being checked against the constant is written to the right. This order is comparable to the non-standard speaking style of Yoda, which is roughly object–subject–verb[2] (e.g., “When nine hundred years old you reach, look as good you will not."[3][4]).

Advantage

Placing the constant value in the expression does not change the behavior of the program (unless the values evaluate to false—see below). In programming languages that use a single equals sign (=) for assignment and not for comparison, a possible mistake is to assign a value unintentionally instead of writing a conditional statement.

if (myNumber = 52) { /* ... */ }
// This equals the new value of myNumber and not the desired condition, and overwrites the value of myNumber

Using Yoda conditions:

if (52 = myNumber) { /* ... */ }
// This is a syntax error and will not compile

Since 52 is a constant and can not be changed, this error will be caught by the compiler.

Boolean myBoolean = true;
if (myBoolean = null) { /* ... */ }
// This causes a NullPointerException in Java Runtime, but legal in compilation.

It can also solve some types of unsafe null behavior.

String myString = null;
if (myString.equals("foobar")) { /* ... */ }
// This causes a NullPointerException in Java

With Yoda conditions:

String myString = null;
if ("foobar".equals(myString)) { /* ... */ }
// This is false, as expected

Criticism

Critics of Yoda conditions see the lack of readability as a disadvantage that does not outweigh the benefits described above. Some programming languages do not allow variable assignments within conditionals, in which case this error is impossible to make.

The advantage of avoiding null behavior can also be considered a disadvantage, as null pointer errors can be hidden and only appear much later in the program.

See also

References

  1. ^ https://make.wordpress.org/core/handbook/coding-standards/php/#yoda-conditions
  2. ^ Pullum, Geoffrey K. (2005-05-18). "Yoda's Syntax the Tribune Analyzes; Supply More Details I Will!". http://itre.cis.upenn.edu/~myl/languagelog/. Language Log. Retrieved 2014-12-22. One way to look at Yoda's syntax is that it shows signs of favoring OSV syntax (Object-Subject-Verb) as the basic order in the simple clause. {{cite web}}: External link in |website= (help)
  3. ^ "The StarWars.com 10: Best Yoda Quotes". starwars.com. Lucasfilm, Ltd. 2013-11-26. Retrieved 2014-12-22. When nine hundred years old you reach, look as good you will not.
  4. ^ "Quotes for Yoda (Character)". imdb.com. Amazon. Retrieved 2014-12-22. When nine hundred years old *you* reach, look as good *you* will not, hmm?

External links