1 <p>This declares a volatile reference to an array, which might not be what
2 you want. With a volatile reference to an array, reads and writes of
3 the reference to the array are treated as volatile, but the array elements
4 are non-volatile. To get volatile array elements, you will need to use
5 one of the atomic array classes in java.util.concurrent (provided