yoda

Christian Harms's picture

What are yoda conditions?

Yoda was a great teacher except for his word sequence. For programmer exists the yoda condition. But was is it? Here a normal if-code-snipplet :

  1. if (value == 42) {
  2.     ...
  3. }

As yoda condition written:

  1. if (42 == value) {
  2.     ...
  3. }

I found some discussions on stackoverflow.com (removed and backuped) and collected some pros and no really contras.Read more

Syndicate content