(I do not know whether i should ask this here or not) I want to run the same java program twice which has most of the variables static.
if i ran this twice(concurrently) will these static variables have same values or different?
As the static variables are class variables, this is confusing me.