I have a class called Hand and another class to test it.
Hand uses global variables and change their values with some methods
if in class test I create
Make private List hand = new ArrayList(); as instance variable rather then make it static..
Coz static is property of class and instance variables are property of Object... which is different for different Object ..but in case of static they are same for all objects..