for example, I have an int array of 10 elements, thread A modifies the element with subscript 0, and thread B modifies the element with subscript 5.
does this cause thread safety problems?
personally, I don"t think there will be a problem, but it is a dangerous operation.