CSC/ECE 517 Fall 2009/wiki3 20 i7: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 12: Line 12:
Invariants must be preserved.  <Explain in english>
Invariants must be preserved.  <Explain in english>


=References=
*http://en.wikipedia.org/wiki/Liskov_substitution_principle
*http://en.wikipedia.org/wiki/Liskov_substitution_principle
*http://javaboutique.internet.com/tutorials/JavaOO/
*http://javaboutique.internet.com/tutorials/JavaOO/
*http://www.codingefficiency.com/2009/07/21/solid-l-liskov-substitution-principle/
*http://www.codingefficiency.com/2009/07/21/solid-l-liskov-substitution-principle/

Revision as of 08:53, 18 November 2009

Liskov substitution principle

The Liskov substitution principle was introduced by Barbara Liskov in 1987 and is concerned with subtype contractual correctness. Based on a paper from 1994 the principle states, "Let q(x) be a property provable about objects x of type T. Then q(y) should be true for objects y of type S where S is a subtype of T.". This means that for every parent type T, subtype S should be able to be substituted in for it and the behavior of the program should remain exactly the same.

Preconditions

Preconditions cannot be strengthened. <Explain in english> <Example>

Postconditions

Postconditions cannot be weakened. <Explain in english>

Invariants

Invariants must be preserved. <Explain in english>

References