4 comments

  1. Well, at the very least it is a start for fixing the ‘Billion dollar mistake’ called null pointers… http://developers.slashdot.org/article.pl?sid=09/03/03/1459209&from=rss

    Sander Mak

  2. A sample from the document you link to:

    final String aMember = g?.members?[0]?.name ?: “nobody”;

    That’s a lot of question marks! IMHO totally unreadable.

    Wouter van Vugt

  3. consider the alternative…

    Person[] t1= g != null ? g.members : null;
    Person t2 = t1 != null ? t1[0] : null;
    Name t3 = t2 != null ? t2.name : null;
    final String aMember = t3 != null ? t3 : “nobody”;

    Frappee

  4. […] etc. Als Beispiel wurde im Vortrag der Sprache Java ein neuer Operator, Elvis Operator, “begebracht”. Ob wir das hier je brauchen, weiss ich nicht. Einen Einblick zu […]

    Belgisches Bier + Java = Devoxx – Dag 1 – about:Namics

Comments are closed.