It depends where the variable is defined. If it's defined in the STATIC area of the class (or the definition includes the STATIC keyword), then it would be expected to be the same for all instances of the class. If on the other hand it's defined in the OBJECT area, then it should be distinct for each instance.
↧