Tagged Questions
24
votes
3answers
10k views
What is the lifetime of a static variable in a C++ function?
If a variable is declared as static in a function's scope it is only initialized once and retains its value between function calls, we all know that but what exactly is its lifetime? When do its ...
1
vote
1answer
477 views
How is the lifetime of a static class affected in a stateless asp.net application?
I've defined a helper class to keep track of a small dictionary of items. it stores this information as a static property, which is initialized in the static constructor. the list is very small and ...