Or should they always be a function when business logic is invloved ?
Example: Order.RequiresPayment
property or function ? There are business rules as for when it is true or not
IS there a pattern that may determine this?
|
|
Or should they always be a function when business logic is invloved ? Example: Order.RequiresPayment property or function ? There are business rules as for when it is true or not IS there a pattern that may determine this? |
||
|
|
|
|
A pet-hate of mine is when access to a property causes the state of an object to change. Properties should reveal something about the existing state of an object, whereas functions can be used to cause something about the object to change. Causing an object's state to change when accessing properties makes debugging very difficult - a developer usually expects a function to cause something to happen and when using the debugger won't let a function run, unless they are ready for the results. On the other hand, most debuggers will automatically access the public properties on an object, not expecting the object's state to change merely by accessing the properties. |
||
|
|
|
|
Generally, a property should not require complex calculations. A property promises to be really fast while a function (or method) does not. So a value that is calculated or could take some time to retrieve should be a method and a value that is instantly ready can be a property. |
||
|
|
|
|
I agree with Adam. Usually a property will contain a value such Count, Length, etc. |
||
|
|
|
|
You can usually decide by whether it makes more sense to think of it as a Business Property or a Business Function. The level of abstraction doesn't change the way you think about things. |
||
|
|
|
|
This is a language-specific question. In Python, for example, business rules can (and often are) both. Principally, they're method functions. However, Python allows them to appear as properties if that's easier on the eyes when reading the code. Note that
|
|||
|
|
|
|
When in doubt, consider maintenance of your code as a guideline. If If it's determined by a formula, or if it's updated in many places, it's probably best to encapsulate it in a function. |
||
|
|