Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 1
    Writing them in the getters of the vars would mean running the formula every time the var is accessed, while putting it in bar's setter means running the formula only if bar changes, right? Ooooh I think you just opened my eyes, I just need to figure out what happens more often, changes in bar or reads of the other vars, and decide based on that result. Commented Dec 8, 2017 at 15:38
  • @Kevin also look at lazy properties they are calculated once and can be read many times but if the underlying changes? Commented Dec 11, 2017 at 15:27