Posts Tagged java 7
Support the Elvis proposal for Java !
Posted by Olivier Gérardin in Java on 2009-12-30
Are you tired of writing
(x != null) ? x.getThis() : null
Would you rather write something like
x?.getThis()
If so, support the Elvis proposal for Java !
Interesting alternative notations can be found here.