I am taking an intermediate programming course which stresses the use of invariants. I have never used them before and they seem to take up more time to create. Does the software engineering industry stress the use of invariants?
|
|
|||||||||||
|
|
|
Depends on who you ask - I use invariants simply because it makes life easier. Learning invariants is like learning blind-typing. Each time you use an invariant, you know more about your code. If you insert the invariant as a comment in your loop, it helps the reader A LOT. I would say that using invariants makes creation and maintenance of source code much cheaper, and makes you able to create much more sophisticated algorithms, which are still maintainable. And in contrast to OOP, I have never experienced anyone wasting their time by using invariants. |
||
|
|
|
|
If you use a simple approach to creating invariants where they make sense, the "more time to create" will be paid for in correctness. For example
This can be created in one minute, and then you can use it to check that your object is correct after every creation or modifying procedure. You will typically need conditional compilation to wipe this out in release versions, for performance purposes. But you have that in any modern language. Update: For the bigger picture, see questions about Design by Contract. |
|||
|
|
|
|
I don't think about invariants very much - not as much as pre/post-conditions. I should probably think about invariants more, to be honest. One thing to think about is immutability - if you're using an OO language but make types immutable where you can, you don't need to worry about invariants as much: if the state is valid to start with, it will stay valid. It does sound like your course may be over-emphasizing invariants a little bit... but it does depend on what you're doing. They're more appropriate in some situations than others. Maybe your lecturer is just a big fan of them with a lot of experience in areas where they're really useful. |
||
|
|
