设有语句“int array[3][4];”,则在下面几种引用下标为i和j的数组元素的方法中,不正确的引用方式是________。
A*(*(array + i) + j)[|]array[i][j][|]*(array[i] + j)[|]*(array + i*4 + j)