Managing multiple instances of same class (Java)
问题 Hey I'm having some trouble managing multiple instances of the same class in a java program. I've creating a few instances of a java class that contains a few methods that add/subtract from an integer in the class, but what's happening is that the adding and subtracting is being done on all of the instances (see code below), any tips on managing these instances is most appreciated. Integerclass num1 = new Integerclass(); Integerclass num2 = new Integerclass(); Integerclass num3 = new