What are the order of operations when using two assignment operators in a single line?
public static void main(String[] args){ int i = 0; int[] a = {
If I remember correctly, = operator is right-associative; so i will be assigned first, then a[i].