Safe navigation operator
In object-oriented programming, the Safe navigation operator (also known as Optional chaining operator, Safe call operator, Null-conditional operator) is an operator which is used to avoid sequental null checks and assignments and replace them with method/property chaining. While classic navigation operator throws null pointer exception if called on null object, safe navigation operator just stops evaluation of method/field chain and returns null as value of chain expression. It is currently supported in languages such as Groovy,[1] Swift,[2] Ruby,[3] C#,[4] Kotlin,[5] CoffeeScript and others. There's currently no common naming convention for this operator, but Safe navigation operator is the most widely used term.
The main advantage of using this operator is that it solves problem commonly known as pyramid of doom. Instead of writing multiple nested if
s programmer can just use usual chaining, but put question mark symbols before dots (or other characters used for chaining).
Examples
Groovy
Safe navigation operator:[6]
def name = article?.author?.name
Swift
Optional chaining operator:[7]
let name = article?.author?.name
Ruby
Ruby supports different &.
safe navigation operator since version 2.3.0:[8]
name = article&.author&.name
C#
In C# 6.0 and above, basic null-conditional operators ?.
and ?[]
:[9]
String name = articles?[0].author?.name
Kotlin
Safe call operator:[10]
val name = article?.author?.name
References
- ↑ "6.1. Safe navigation operator". Retrieved 2016-01-28.
- ↑ "Optional Chaining". Retrieved 2016-01-28.
- ↑ "Ruby 2.3.0 Released". Retrieved 2016-01-28.
- ↑ "Null-conditional Operators (C# and Visual Basic)". Retrieved 2016-01-28.
- ↑ "Null Safety". Retrieved 2016-01-28.
- ↑ "6.1. Safe navigation operator". Retrieved 2016-01-28.
- ↑ "Optional Chaining". Retrieved 2016-01-28.
- ↑ "Ruby 2.3.0 Released". Retrieved 2016-01-28.
- ↑ "Null-conditional Operators (C# and Visual Basic)". Retrieved 2016-01-28.
- ↑ "Null Safety". Retrieved 2016-01-28.