Guest User

Untitled

a guest
Jan 21st, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class Test {
  2. public static int[] getArray() {
  3. return null;
  4. }
  5.  
  6. public static void main(String[] args) {
  7. int index = 1;
  8. try {
  9. getArray()[index = 2]++; //эта строка
  10. } catch (Exception e) {
  11.  
  12. }//empty catch
  13. System.out.println("index = " + index);
  14. }
  15. }
Add Comment
Please, Sign In to add comment