posted 18 years ago
Certainly not inside an instance variable. The thing you need to remember is this:
For static member variables, there is only 1 copy of the variable for the whole class. All instances of the class share the same variable.
For non-static (= instance) member variables, there is 1 copy of the variable for every instance of the class. Each instance has its own copy of the variable.