Is there convention regarding whenever method which is essentially read-only, but has mutex/ lock which may need to be modified, is const or not?
if there is not one, what would be disadvantage/bad design if such method is const
Thank you
|
Is there convention regarding whenever method which is essentially read-only, but has mutex/ lock which may need to be modified, is const or not? if there is not one, what would be disadvantage/bad design if such method is Thank you |
|||
| show 1 more comment |
|
You can mark data members with the keyword mutable to allow them to be modified in a constant member function e.g.
Try to do this as little as possible because abusing mutable is evil. |
|||||||||||||||
|
|
I'm generally OK with Especially in the case of caching the result of a calculation for performance. That's strictly an implementation detail that shouldn't be of concern to the callers, so removing the With locks, I'd ask myself if the lock is just a private implementation detail. If the lock is shared with other objects, then it's actually part of the interface. On some platforms, locks are accessed through handles, so you can use |
||||
|
|
mutableis Ok to use or not is: "Does this piece of data represent the object's state as visible from the user?" If you answer this with "Yes, it does", then making itmutablewould be abusingmutable. If you answer with "No, it doesn't", thenmutablemight be acceptable. – sbi Jul 13 '10 at 19:18