1 Reply Latest reply on Oct 24, 2007 5:15 PM by babaxter1

    The same or not

    urswag

      Is between these statements an (internal) difference?

      First statement

      if (reference != null)
      reference.execute();

      Second statement

      if (null != reference)
      reference.execute();


      From the synax there should not be any difference. I do not all
      internal features of Java. Is there a difference betwenn these two statements?