fork download
  1. class Test{
  2. public static int[ ] getArray() { return null; }
  3.  
  4. public static void main( String[] args){
  5. int index = 1;
  6. try{
  7. getArray()[ index = 3]++; //the value of index is reassigned
  8. }
  9. catch (Exception e){ System.out.println("Really?"); } //catch isn't executed since no exception is thrown
  10. System.out.println(" index = " + index);
  11. }
  12. }
Success #stdin #stdout 0.07s 380160KB
stdin
Standard input is empty
stdout
Really?
 index = 3