vote up 1 vote down star

I am designing some immutable classes but I have to have some variables like say .Count to have the total count of the instances. But would having a static variable affect multi-threading?

Because methods like Add, Remove, etc have to update the .Count value. Maybe I should make it lazy property?

flag

56% accept rate
Does each thread need to access the same List object or can each thread have their own collection? Basically, what must be shared between threads. – James Black May 4 at 23:34
No I just need them to increment/decrement the Count appropriately. – Joan Venge May 4 at 23:36
Post some code? – Chad Grant May 4 at 23:45
Making it a lazy property would have the same issues as a static variable -- you'd probably iterate over the instances which could be appearing and disappearing as you count them. – JJO May 5 at 3:39
I'm sorry, I don't see how you can have an Add method on an immutable object, unless you are returning a new instance very time, in which case you could have a readonly Count = oldInstance.Count + 1? – Benjol May 5 at 5:27
show 1 more comment

4 Answers

vote up 2 vote down check

If you're just doing a counter, interlocked operations may be an option as well instead of a lock. MSDN has a nice example of this in the context of a reference count.

link|flag
vote up 0 vote down

Yes, whenever you update a shared variable in a multi-threaded environment you will need to just wrap those updates in a lock.

link|flag
vote up 2 vote down

You might want to consider using functions from the Interlocked class, at least in the example you gave.

link|flag
So that means in practice, the parallel operations will be slower, right? – Joan Venge May 4 at 23:35
Slower than what? – bdonlan May 5 at 2:02
Slower than a case where the count was an instance (not that it would work), but theoretically. – Joan Venge May 5 at 14:02
vote up 1 vote down

But would having a static variable affect multi-threading?

sure! shared state is affected, by defition, by multi-threading.

Because methods like Add, Remove, etc have to update the .Count value. Maybe I should make it lazy property?

it's better using a class that does an atomic add (like AtomicInteger in java) in order to avoid locks: take a look here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.