Do I have to lock access to instance members?
Example:
public class HttpModule : IHttpModule
{
//...
Dictionary<int, int> foo;
void UseFoo(int a, int b)
{
foo[a] = b;
}
}
|
Do I have to lock access to instance members? Example:
| |||
|
feedback
|
|
It's not crystal clear to me so far from the MSDN documentation, but I found a forum post from someone who claims to know the answer. It sounds like you shouldn't expect bad stuff to happen with your implementation, but you should be aware that | |||||||
feedback
|
|
I recently found an article which touches on this question slightly: http://www.dominicpettifer.co.uk/Blog/41/ihttpmodule-gotchas---the-init---method-can-get-called-multiple-times It doesn't mention threads, but only says that the worker process will
Following the code in from the link, you can be sure that your init code is executed once in a thread-safe manner:
I've been meaning to set up a test app to run this and test it, just to see if it's true, but I haven't had the time. | |||
feedback
|
|
The article posted by Jim is interesting, but as Jim says it does not mention anything about thread safety. I guess you would only need the lock mechanism if you are initializing static members or performing "only once" initializations i.e. initializing a static resource. I couldn't conclude from MSDN nor the article mentioned by Jim that we need the lock mechanism when initializing non-static class variables. | |||
|
feedback
|