there is something that\'s bugging me.
In a non-threaded program, is it better to have local static variables(inside methods) or static class members?
In thi
Object-oriented-speaking, bar is part of the state of class C. This is the reason why I usually prefer using fields rather than static local variables.