147
Elvis (feddit.it)
submitted 3 months ago by Sleepzy@feddit.it to c/programmerhumor@lemmy.ml
you are viewing a single comment's thread
view the rest of the comments
[-] dev_null@lemmy.ml 3 points 2 months ago* (last edited 2 months ago)

Because it's not one. Ternary operator is A ? B : C, Elvis operator is A ?: B. The same two characters are involved, but both the syntax and effect is different.

[-] AVincentInSpace@pawb.social 2 points 2 months ago

The second one isn't valid syntax in any programming language I'm familiar with. What does it do?

[-] dev_null@lemmy.ml 4 points 2 months ago

It's a shorthand for writing this:

variable = if (input != null) input else default

This is equivalent:

variable = input ?: default
[-] AVincentInSpace@pawb.social 2 points 2 months ago* (last edited 2 months ago)
[-] dev_null@lemmy.ml 2 points 2 months ago* (last edited 2 months ago)

It's in Kotlin and some other languages. C# has it but there it's actually A ?? B.

this post was submitted on 17 Nov 2024
147 points (100.0% liked)

Programmer Humor

33428 readers
626 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS