Why is a Java array index expression evaluated before checking if the array reference expression is null?What...

How should I respond when I lied about my education and the company finds out through background check?

Freedom of speech and where it applies

We have a love-hate relationship

Why does Async/Await work properly when the loop is inside the async function and not the other way around?

MAXDOP Settings for SQL Server 2014

Proof of Lemma: Every nonzero integer can be written as a product of primes

THT: What is a squared annular “ring”?

Can I use my Chinese passport to enter China after I acquired another citizenship?

Drawing ramified coverings with tikz

Have I saved too much for retirement so far?

Why do IPv6 unique local addresses have to have a /48 prefix?

Flux received by a negative charge

Does the Mind Blank spell prevent the target from being frightened?

Can the Supreme Court overturn an impeachment?

Wrapping Cryptocurrencies for interoperability sake

My friend sent me a screenshot of a transaction hash, but when I search for it I find divergent data. What happened?

Why did the HMS Bounty go back to a time when whales are already rare?

Is it possible to use .desktop files to open local pdf files on specific pages with a browser?

Is a model fitted to data or is data fitted to a model?

Are lightweight LN wallets vulnerable to transaction withholding?

Translation of Scottish 16th century church stained glass

Create all possible words using a set or letters

Query about absorption line spectra

How can "mimic phobia" be cured or prevented?



Why is a Java array index expression evaluated before checking if the array reference expression is null?


What are the rules for evaluation order in Java?Is the array index or the assigned value evaluated first?Checking for a null int value from a Java ResultSetIs null check needed before calling instanceof?Checking if a string is empty or null in JavaWhy can I throw null in Java?Printing an array with no elements?How can I use an array within a method that was called in as a parameter for a different constructor initializer?? (Java)Runtime evaluation of expressions in Java method referencesNullPointerException when switching activites and using a global arrayWhy does array[idx++]+=“a” increase idx once in Java 8 but twice in Java 9 and 10?What is the reason behind null checks in method reference expression evaluation?













33















According to the JLS, runtime evaluation of an array access expression behaves as follows:




  1. First, the array reference expression is evaluated. If this
    evaluation completes abruptly, then the array access completes
    abruptly for the same reason and the index expression is not
    evaluated.

  2. Otherwise, the index expression is evaluated. If this
    evaluation completes abruptly, then the array access completes
    abruptly for the same reason.

  3. Otherwise, if the value of the array
    reference expression is null, then a NullPointerException is thrown.


So this code will print: java.lang.NullPointerException, index=2



class Test3 {
public static void main(String[] args) {
int index = 1;
try {
nada()[index = 2]++;
} catch (Exception e) {
System.out.println(e + ", index=" + index);
}
}

static int[] nada() {
return null;
}
}


The question is: for what reason do we need to first evaluate the index = 2 expression and not just throw the NullPointerException once the array reference is evaluated to null? Or in other words - why is the order 1,2,3 and not 1,3,2?










share|improve this question




















  • 1





    Firstly you have to initialize an array and secondly the priority of equals sign is high that's why its given null pointer exception.

    – Ammar Ali
    Mar 14 at 11:10






  • 8





    Asking on SO why the JLS is written the way it is will not give you any good answer unless it maybe comes from one of the designers of the Java language.

    – Seelenvirtuose
    Mar 14 at 11:17








  • 4





    They had to choose something, and both options can produce "unexpected" scenarios. (I.e. scenarios that behave in a not very intuitive way). The option that was chosen seems to be more in line with how expression evaluation works in other parts of Java.

    – biziclop
    Mar 14 at 11:35






  • 2





    … which in turn is a duplicate of Is the array index or the assigned value evaluated first?

    – fantaghirocco
    Mar 14 at 13:22













  • @fantaghirocco i didn't ask about how java evaluates an array index expression, it's described in the question. I just wanted to know what the reason behind that's behavior.

    – Andrei Nepsha
    Mar 14 at 13:43


















33















According to the JLS, runtime evaluation of an array access expression behaves as follows:




  1. First, the array reference expression is evaluated. If this
    evaluation completes abruptly, then the array access completes
    abruptly for the same reason and the index expression is not
    evaluated.

  2. Otherwise, the index expression is evaluated. If this
    evaluation completes abruptly, then the array access completes
    abruptly for the same reason.

  3. Otherwise, if the value of the array
    reference expression is null, then a NullPointerException is thrown.


So this code will print: java.lang.NullPointerException, index=2



class Test3 {
public static void main(String[] args) {
int index = 1;
try {
nada()[index = 2]++;
} catch (Exception e) {
System.out.println(e + ", index=" + index);
}
}

static int[] nada() {
return null;
}
}


The question is: for what reason do we need to first evaluate the index = 2 expression and not just throw the NullPointerException once the array reference is evaluated to null? Or in other words - why is the order 1,2,3 and not 1,3,2?










share|improve this question




















  • 1





    Firstly you have to initialize an array and secondly the priority of equals sign is high that's why its given null pointer exception.

    – Ammar Ali
    Mar 14 at 11:10






  • 8





    Asking on SO why the JLS is written the way it is will not give you any good answer unless it maybe comes from one of the designers of the Java language.

    – Seelenvirtuose
    Mar 14 at 11:17








  • 4





    They had to choose something, and both options can produce "unexpected" scenarios. (I.e. scenarios that behave in a not very intuitive way). The option that was chosen seems to be more in line with how expression evaluation works in other parts of Java.

    – biziclop
    Mar 14 at 11:35






  • 2





    … which in turn is a duplicate of Is the array index or the assigned value evaluated first?

    – fantaghirocco
    Mar 14 at 13:22













  • @fantaghirocco i didn't ask about how java evaluates an array index expression, it's described in the question. I just wanted to know what the reason behind that's behavior.

    – Andrei Nepsha
    Mar 14 at 13:43
















33












33








33


4






According to the JLS, runtime evaluation of an array access expression behaves as follows:




  1. First, the array reference expression is evaluated. If this
    evaluation completes abruptly, then the array access completes
    abruptly for the same reason and the index expression is not
    evaluated.

  2. Otherwise, the index expression is evaluated. If this
    evaluation completes abruptly, then the array access completes
    abruptly for the same reason.

  3. Otherwise, if the value of the array
    reference expression is null, then a NullPointerException is thrown.


So this code will print: java.lang.NullPointerException, index=2



class Test3 {
public static void main(String[] args) {
int index = 1;
try {
nada()[index = 2]++;
} catch (Exception e) {
System.out.println(e + ", index=" + index);
}
}

static int[] nada() {
return null;
}
}


The question is: for what reason do we need to first evaluate the index = 2 expression and not just throw the NullPointerException once the array reference is evaluated to null? Or in other words - why is the order 1,2,3 and not 1,3,2?










share|improve this question
















According to the JLS, runtime evaluation of an array access expression behaves as follows:




  1. First, the array reference expression is evaluated. If this
    evaluation completes abruptly, then the array access completes
    abruptly for the same reason and the index expression is not
    evaluated.

  2. Otherwise, the index expression is evaluated. If this
    evaluation completes abruptly, then the array access completes
    abruptly for the same reason.

  3. Otherwise, if the value of the array
    reference expression is null, then a NullPointerException is thrown.


So this code will print: java.lang.NullPointerException, index=2



class Test3 {
public static void main(String[] args) {
int index = 1;
try {
nada()[index = 2]++;
} catch (Exception e) {
System.out.println(e + ", index=" + index);
}
}

static int[] nada() {
return null;
}
}


The question is: for what reason do we need to first evaluate the index = 2 expression and not just throw the NullPointerException once the array reference is evaluated to null? Or in other words - why is the order 1,2,3 and not 1,3,2?







java language-lawyer






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 14 at 16:09









senseiwu

2,01411333




2,01411333










asked Mar 14 at 11:00









Andrei NepshaAndrei Nepsha

17119




17119








  • 1





    Firstly you have to initialize an array and secondly the priority of equals sign is high that's why its given null pointer exception.

    – Ammar Ali
    Mar 14 at 11:10






  • 8





    Asking on SO why the JLS is written the way it is will not give you any good answer unless it maybe comes from one of the designers of the Java language.

    – Seelenvirtuose
    Mar 14 at 11:17








  • 4





    They had to choose something, and both options can produce "unexpected" scenarios. (I.e. scenarios that behave in a not very intuitive way). The option that was chosen seems to be more in line with how expression evaluation works in other parts of Java.

    – biziclop
    Mar 14 at 11:35






  • 2





    … which in turn is a duplicate of Is the array index or the assigned value evaluated first?

    – fantaghirocco
    Mar 14 at 13:22













  • @fantaghirocco i didn't ask about how java evaluates an array index expression, it's described in the question. I just wanted to know what the reason behind that's behavior.

    – Andrei Nepsha
    Mar 14 at 13:43
















  • 1





    Firstly you have to initialize an array and secondly the priority of equals sign is high that's why its given null pointer exception.

    – Ammar Ali
    Mar 14 at 11:10






  • 8





    Asking on SO why the JLS is written the way it is will not give you any good answer unless it maybe comes from one of the designers of the Java language.

    – Seelenvirtuose
    Mar 14 at 11:17








  • 4





    They had to choose something, and both options can produce "unexpected" scenarios. (I.e. scenarios that behave in a not very intuitive way). The option that was chosen seems to be more in line with how expression evaluation works in other parts of Java.

    – biziclop
    Mar 14 at 11:35






  • 2





    … which in turn is a duplicate of Is the array index or the assigned value evaluated first?

    – fantaghirocco
    Mar 14 at 13:22













  • @fantaghirocco i didn't ask about how java evaluates an array index expression, it's described in the question. I just wanted to know what the reason behind that's behavior.

    – Andrei Nepsha
    Mar 14 at 13:43










1




1





Firstly you have to initialize an array and secondly the priority of equals sign is high that's why its given null pointer exception.

– Ammar Ali
Mar 14 at 11:10





Firstly you have to initialize an array and secondly the priority of equals sign is high that's why its given null pointer exception.

– Ammar Ali
Mar 14 at 11:10




8




8





Asking on SO why the JLS is written the way it is will not give you any good answer unless it maybe comes from one of the designers of the Java language.

– Seelenvirtuose
Mar 14 at 11:17







Asking on SO why the JLS is written the way it is will not give you any good answer unless it maybe comes from one of the designers of the Java language.

– Seelenvirtuose
Mar 14 at 11:17






4




4





They had to choose something, and both options can produce "unexpected" scenarios. (I.e. scenarios that behave in a not very intuitive way). The option that was chosen seems to be more in line with how expression evaluation works in other parts of Java.

– biziclop
Mar 14 at 11:35





They had to choose something, and both options can produce "unexpected" scenarios. (I.e. scenarios that behave in a not very intuitive way). The option that was chosen seems to be more in line with how expression evaluation works in other parts of Java.

– biziclop
Mar 14 at 11:35




2




2





… which in turn is a duplicate of Is the array index or the assigned value evaluated first?

– fantaghirocco
Mar 14 at 13:22







… which in turn is a duplicate of Is the array index or the assigned value evaluated first?

– fantaghirocco
Mar 14 at 13:22















@fantaghirocco i didn't ask about how java evaluates an array index expression, it's described in the question. I just wanted to know what the reason behind that's behavior.

– Andrei Nepsha
Mar 14 at 13:43







@fantaghirocco i didn't ask about how java evaluates an array index expression, it's described in the question. I just wanted to know what the reason behind that's behavior.

– Andrei Nepsha
Mar 14 at 13:43














4 Answers
4






active

oldest

votes


















36














An array access expression has two sub-expressions:




An array access expression contains two subexpressions, the array reference expression (before the left bracket) and the index expression (within the brackets).




The two sub-expressions are evaluated before the array access expression itself, in order to evaluate the expression.



After evaluating the two sub-expressions



nada()[index = 2]++;


becomes



null[2]++;


Only now the expression is evaluated and the NullPointerException is thrown.



This is consistent with the evaluation of most expressions in Java (the only counter examples I can think of are short circuiting operators such as && and ||).



For example, if you make the following method call:



firstMethod().secondMethod(i = 2);


First you evaluate firstMethod() and i = 2, and only later you throw NullPointerException if firstMethod() evaluated to null.






share|improve this answer































    13














    This is because in the generated bytecode there are no explicit null checks.



    nada()[index = 2]++;


    is translated into the following byte code:



    // evaluate the array reference expression
    INVOKESTATIC Test3.nada ()[I
    // evaluate the index expression
    ICONST_2
    DUP
    ISTORE 1
    // access the array
    // if the array reference expression was null, the IALOAD operation will throw a null pointer exception
    DUP2
    IALOAD
    ICONST_1
    IADD
    IASTORE





    share|improve this answer































      7














      The basic byte code operations are (for an int[])



      ALOAD array_address
      ILOAD index
      IALOAD array_element_retrieval


      The IALOAD does the null pointer check. In reality the code is a bit more elaborate:




      1. calculate array address

      2. calculate index

      3. IALOAD


      So the answer is: it would need an extra checking operation after the array address is loaded, in anticipation of the array access.



      Behavior by straight implementation.






      share|improve this answer































        7














        The decision may be partially be rooted in performance.



        In order to know that index = 2 is not going to be required, we would have to first evaluate nada() and then check whether it was null. We would then branch on the result of this condition, and decide whether or not to evaluate the array index expression.



        Every perfectly valid array index expression would be made slower by one additional operation, just for the sake of saving code - code that is going to throw an exception anyway - from evaluating one expression unnecessarily.



        It is an optimistic approach which works better in the majority of cases.






        share|improve this answer























          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55160799%2fwhy-is-a-java-array-index-expression-evaluated-before-checking-if-the-array-refe%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          4 Answers
          4






          active

          oldest

          votes








          4 Answers
          4






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          36














          An array access expression has two sub-expressions:




          An array access expression contains two subexpressions, the array reference expression (before the left bracket) and the index expression (within the brackets).




          The two sub-expressions are evaluated before the array access expression itself, in order to evaluate the expression.



          After evaluating the two sub-expressions



          nada()[index = 2]++;


          becomes



          null[2]++;


          Only now the expression is evaluated and the NullPointerException is thrown.



          This is consistent with the evaluation of most expressions in Java (the only counter examples I can think of are short circuiting operators such as && and ||).



          For example, if you make the following method call:



          firstMethod().secondMethod(i = 2);


          First you evaluate firstMethod() and i = 2, and only later you throw NullPointerException if firstMethod() evaluated to null.






          share|improve this answer




























            36














            An array access expression has two sub-expressions:




            An array access expression contains two subexpressions, the array reference expression (before the left bracket) and the index expression (within the brackets).




            The two sub-expressions are evaluated before the array access expression itself, in order to evaluate the expression.



            After evaluating the two sub-expressions



            nada()[index = 2]++;


            becomes



            null[2]++;


            Only now the expression is evaluated and the NullPointerException is thrown.



            This is consistent with the evaluation of most expressions in Java (the only counter examples I can think of are short circuiting operators such as && and ||).



            For example, if you make the following method call:



            firstMethod().secondMethod(i = 2);


            First you evaluate firstMethod() and i = 2, and only later you throw NullPointerException if firstMethod() evaluated to null.






            share|improve this answer


























              36












              36








              36







              An array access expression has two sub-expressions:




              An array access expression contains two subexpressions, the array reference expression (before the left bracket) and the index expression (within the brackets).




              The two sub-expressions are evaluated before the array access expression itself, in order to evaluate the expression.



              After evaluating the two sub-expressions



              nada()[index = 2]++;


              becomes



              null[2]++;


              Only now the expression is evaluated and the NullPointerException is thrown.



              This is consistent with the evaluation of most expressions in Java (the only counter examples I can think of are short circuiting operators such as && and ||).



              For example, if you make the following method call:



              firstMethod().secondMethod(i = 2);


              First you evaluate firstMethod() and i = 2, and only later you throw NullPointerException if firstMethod() evaluated to null.






              share|improve this answer













              An array access expression has two sub-expressions:




              An array access expression contains two subexpressions, the array reference expression (before the left bracket) and the index expression (within the brackets).




              The two sub-expressions are evaluated before the array access expression itself, in order to evaluate the expression.



              After evaluating the two sub-expressions



              nada()[index = 2]++;


              becomes



              null[2]++;


              Only now the expression is evaluated and the NullPointerException is thrown.



              This is consistent with the evaluation of most expressions in Java (the only counter examples I can think of are short circuiting operators such as && and ||).



              For example, if you make the following method call:



              firstMethod().secondMethod(i = 2);


              First you evaluate firstMethod() and i = 2, and only later you throw NullPointerException if firstMethod() evaluated to null.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Mar 14 at 11:30









              EranEran

              290k37475561




              290k37475561

























                  13














                  This is because in the generated bytecode there are no explicit null checks.



                  nada()[index = 2]++;


                  is translated into the following byte code:



                  // evaluate the array reference expression
                  INVOKESTATIC Test3.nada ()[I
                  // evaluate the index expression
                  ICONST_2
                  DUP
                  ISTORE 1
                  // access the array
                  // if the array reference expression was null, the IALOAD operation will throw a null pointer exception
                  DUP2
                  IALOAD
                  ICONST_1
                  IADD
                  IASTORE





                  share|improve this answer




























                    13














                    This is because in the generated bytecode there are no explicit null checks.



                    nada()[index = 2]++;


                    is translated into the following byte code:



                    // evaluate the array reference expression
                    INVOKESTATIC Test3.nada ()[I
                    // evaluate the index expression
                    ICONST_2
                    DUP
                    ISTORE 1
                    // access the array
                    // if the array reference expression was null, the IALOAD operation will throw a null pointer exception
                    DUP2
                    IALOAD
                    ICONST_1
                    IADD
                    IASTORE





                    share|improve this answer


























                      13












                      13








                      13







                      This is because in the generated bytecode there are no explicit null checks.



                      nada()[index = 2]++;


                      is translated into the following byte code:



                      // evaluate the array reference expression
                      INVOKESTATIC Test3.nada ()[I
                      // evaluate the index expression
                      ICONST_2
                      DUP
                      ISTORE 1
                      // access the array
                      // if the array reference expression was null, the IALOAD operation will throw a null pointer exception
                      DUP2
                      IALOAD
                      ICONST_1
                      IADD
                      IASTORE





                      share|improve this answer













                      This is because in the generated bytecode there are no explicit null checks.



                      nada()[index = 2]++;


                      is translated into the following byte code:



                      // evaluate the array reference expression
                      INVOKESTATIC Test3.nada ()[I
                      // evaluate the index expression
                      ICONST_2
                      DUP
                      ISTORE 1
                      // access the array
                      // if the array reference expression was null, the IALOAD operation will throw a null pointer exception
                      DUP2
                      IALOAD
                      ICONST_1
                      IADD
                      IASTORE






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Mar 14 at 11:27









                      Thomas KlägerThomas Kläger

                      7,0182819




                      7,0182819























                          7














                          The basic byte code operations are (for an int[])



                          ALOAD array_address
                          ILOAD index
                          IALOAD array_element_retrieval


                          The IALOAD does the null pointer check. In reality the code is a bit more elaborate:




                          1. calculate array address

                          2. calculate index

                          3. IALOAD


                          So the answer is: it would need an extra checking operation after the array address is loaded, in anticipation of the array access.



                          Behavior by straight implementation.






                          share|improve this answer




























                            7














                            The basic byte code operations are (for an int[])



                            ALOAD array_address
                            ILOAD index
                            IALOAD array_element_retrieval


                            The IALOAD does the null pointer check. In reality the code is a bit more elaborate:




                            1. calculate array address

                            2. calculate index

                            3. IALOAD


                            So the answer is: it would need an extra checking operation after the array address is loaded, in anticipation of the array access.



                            Behavior by straight implementation.






                            share|improve this answer


























                              7












                              7








                              7







                              The basic byte code operations are (for an int[])



                              ALOAD array_address
                              ILOAD index
                              IALOAD array_element_retrieval


                              The IALOAD does the null pointer check. In reality the code is a bit more elaborate:




                              1. calculate array address

                              2. calculate index

                              3. IALOAD


                              So the answer is: it would need an extra checking operation after the array address is loaded, in anticipation of the array access.



                              Behavior by straight implementation.






                              share|improve this answer













                              The basic byte code operations are (for an int[])



                              ALOAD array_address
                              ILOAD index
                              IALOAD array_element_retrieval


                              The IALOAD does the null pointer check. In reality the code is a bit more elaborate:




                              1. calculate array address

                              2. calculate index

                              3. IALOAD


                              So the answer is: it would need an extra checking operation after the array address is loaded, in anticipation of the array access.



                              Behavior by straight implementation.







                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Mar 14 at 11:35









                              Joop EggenJoop Eggen

                              78.4k755105




                              78.4k755105























                                  7














                                  The decision may be partially be rooted in performance.



                                  In order to know that index = 2 is not going to be required, we would have to first evaluate nada() and then check whether it was null. We would then branch on the result of this condition, and decide whether or not to evaluate the array index expression.



                                  Every perfectly valid array index expression would be made slower by one additional operation, just for the sake of saving code - code that is going to throw an exception anyway - from evaluating one expression unnecessarily.



                                  It is an optimistic approach which works better in the majority of cases.






                                  share|improve this answer




























                                    7














                                    The decision may be partially be rooted in performance.



                                    In order to know that index = 2 is not going to be required, we would have to first evaluate nada() and then check whether it was null. We would then branch on the result of this condition, and decide whether or not to evaluate the array index expression.



                                    Every perfectly valid array index expression would be made slower by one additional operation, just for the sake of saving code - code that is going to throw an exception anyway - from evaluating one expression unnecessarily.



                                    It is an optimistic approach which works better in the majority of cases.






                                    share|improve this answer


























                                      7












                                      7








                                      7







                                      The decision may be partially be rooted in performance.



                                      In order to know that index = 2 is not going to be required, we would have to first evaluate nada() and then check whether it was null. We would then branch on the result of this condition, and decide whether or not to evaluate the array index expression.



                                      Every perfectly valid array index expression would be made slower by one additional operation, just for the sake of saving code - code that is going to throw an exception anyway - from evaluating one expression unnecessarily.



                                      It is an optimistic approach which works better in the majority of cases.






                                      share|improve this answer













                                      The decision may be partially be rooted in performance.



                                      In order to know that index = 2 is not going to be required, we would have to first evaluate nada() and then check whether it was null. We would then branch on the result of this condition, and decide whether or not to evaluate the array index expression.



                                      Every perfectly valid array index expression would be made slower by one additional operation, just for the sake of saving code - code that is going to throw an exception anyway - from evaluating one expression unnecessarily.



                                      It is an optimistic approach which works better in the majority of cases.







                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Mar 14 at 11:48









                                      MichaelMichael

                                      21.2k83572




                                      21.2k83572






























                                          draft saved

                                          draft discarded




















































                                          Thanks for contributing an answer to Stack Overflow!


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid



                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.


                                          To learn more, see our tips on writing great answers.




                                          draft saved


                                          draft discarded














                                          StackExchange.ready(
                                          function () {
                                          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55160799%2fwhy-is-a-java-array-index-expression-evaluated-before-checking-if-the-array-refe%23new-answer', 'question_page');
                                          }
                                          );

                                          Post as a guest















                                          Required, but never shown





















































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown

































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown







                                          Popular posts from this blog

                                          Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

                                          Fil:Tokke komm.svg

                                          Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?