Can individual array references be final?

I have no precedent, but out of curiosity, is there a way to make separate links in the final array?

final Integer[] intArray = new Integer[10]; // doesn't make individual references final final intArray[0] = Integer.valueOf(1); // something like this is not allowed 
+5
source share

All Articles