User Tools

Site Tools


principles:murphy_s_law

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
principles:murphy_s_law [2013-01-16 10:42] – relations: +sub(UP), -sub(KISS); further strategies christianprinciples:murphy_s_law [2021-09-02 17:54] – old revision restored (2021-09-02 10:43) 65.21.179.175
Line 17: Line 17:
 ===== Description ===== ===== Description =====
  
-Although often cited like that, Murphy's Law actually is not a fatalistic comment stating "that life is unfair". Rather it is (or at least can be seen as) an engineering advice to design everything in a way that avoids wrong usage. This applies to everything that is engineered in some way and in particular also to all kinds of [[glossary:modules]], (user) interfaces and systems.+Although often cited like that, Murphy's Law actually is not a fatalistic comment stating "that life is unfair". Rather it is (or at least can be seen as) engineering advice to design everything in a way that avoids wrong usage. This applies to everything that is engineered in some way and in particular also to all kinds of [[glossary:modules]], (user) interfaces and systems.
  
-Ideally an incorrect usage is strictly impossible. For example this is the case when the compiler will stop with an error if a certain mistake is made. And in case of user interface design, a design is better when the user cannot make incorrect inputs as the given controls won't let him.+Ideallyincorrect usage is strictly impossible. For examplethis is the case when the compiler will stop with an error if a certain mistake is made. And in the case of user interface design, a design is better when the user cannot make incorrect inputs as the given controls won't let him.
  
 It is not always possible to design a system in such a way. But as systems are built and used by humans, one should strive for such "fool-proof" designs. It is not always possible to design a system in such a way. But as systems are built and used by humans, one should strive for such "fool-proof" designs.
  
-Note that Murphy's law also applies to every chunk of code. According to the paw the programmer will make mistakes while implementing the system. So it is better to implement a simple design, as this will have fewer possibilities to make implementation mistakes. Furthermore code is maintained. Bugfixes will be necessary present functionality will be changed and enhanced, so every piece of code will potentially be touched in future. So a design is better the fewer possibilities there are to introduce faults while doing maintenance work.+Note that Murphy's law also applies to every chunk of code. According to the law the programmer will make mistakes while implementing the system. So it is better to implement a simple design, as this will have fewer possibilities to make implementation mistakes. Furthermorecode is maintained. Bugfixes will be necessary present functionality will be changed and enhanced, so every piece of code will potentially be touched in future. So a design is better the fewer possibilities there are to introduce faults while doing maintenance work.
  
  
Line 49: Line 49:
 ===== Origin ===== ===== Origin =====
  
-The exact wording and who exactly coined the term, remains unknown. Nevertheless it can be stated that its origin is an experiment with a rocket sled conducted by Edward A. Murphy and John Paul Stapp. During this experiment some sensors have been wired incorrectly. A more accurate quote might read something like this: "If there's more than one possible outcome of a job or task, and one of those outcomes will result in disaster or an undesirable consequence, then somebody will do it that way." A more detailed version of the history of the experiment and the law can be found in ((Nick T. Spark: [[http://www.improb.com/airchives/paperair/volume9/v9i5/murphy/murphy0.html|The Fastest Man on Earth]]. In: Annals of Improbable Research)) and Wikipedia.+The exact wording and who exactly coined the term, remains unknown. Neverthelessit can be stated that its origin is an experiment with a rocket sled conducted by Edward A. Murphy and John Paul Stapp. During this experimentsome sensors had been wired incorrectly. A more accurate quote might read something like this: "If there's more than one possible outcome of a job or task, and one of those outcomes will result in disaster or an undesirable consequence, then somebody will do it that way." A more detailed version of the history of the experiment and the law can be found in ((Nick T. Spark: [[http://www.improb.com/airchives/paperair/volume9/v9i5/murphy/murphy0.html|The Fastest Man on Earth]]. In: Annals of Improbable Research)) and Wikipedia.
  
  
Line 57: Line 57:
 /*  * [[wiki:Examined]]*/ /*  * [[wiki:Examined]]*/
  
-  * [[wiki:Accepted]] The principle is widely known and it'validity is assumed. Nevertheless sometimes it is rather used as a kind of joke instead of an design advice. See for example Jargon File: //[[http://www.catb.org/jargon/html/M/Murphys-Law.html|Murphy's Law]]//+  * [[wiki:Accepted]] The principle is widely known and its validity is assumed. Neverthelesssometimes it is rather used as a kind of joke instead of design advice. See for example Jargon File: //[[http://www.catb.org/jargon/html/M/Murphys-Law.html|Murphy's Law]]//
  
 /*  * [[wiki:Questioned]]*/ /*  * [[wiki:Questioned]]*/
Line 68: Line 68:
 ==== Specializations ==== ==== Specializations ====
  
-  * [[Don't Repeat Yourself]] (DRY): Duplication is a typical example for error possibilities. In case of a change, all instances of a duplicated piece of information have to be changed accordingly. So there is always the possibility to forget to change one of the duplicates. DRY is the application of ML to duplication.+  * [[Don't Repeat Yourself]] (DRY): Duplication is a typical example of error possibilities. In case of a change, all instances of a duplicated piece of information have to be changed accordingly. So there is always the possibility to forget to change one of the duplicates. DRY is the application of ML to duplication.
   * [[Easy to Use and Hard to Misuse]] (EUHM): Because of ML an interface should be crafted so it is easy to use and hard to misuse. EUHM is the application of ML to interfaces.   * [[Easy to Use and Hard to Misuse]] (EUHM): Because of ML an interface should be crafted so it is easy to use and hard to misuse. EUHM is the application of ML to interfaces.
   * [[Uniformity Principle]] (UP): A typical source of mistakes are differences. If similar things work similarly, they are more understandable. But if there are subtle differences in how things work, it is likely that someone will make the mistake to mix this up.   * [[Uniformity Principle]] (UP): A typical source of mistakes are differences. If similar things work similarly, they are more understandable. But if there are subtle differences in how things work, it is likely that someone will make the mistake to mix this up.
Line 74: Line 74:
 ==== Contrary Principles ==== ==== Contrary Principles ====
  
-  * **[[Keep It Simple Stupid]] (KISS)**: On the one hand a simpler design is less prone to implementation errors. In this aspect KISS is similar to ML. On the other hand it is sometimes more complicated to make a design "fool-proof" so usage and maintenance mistakes are prevented. In this aspect KISS is rather a contrary principle. Both applies at the same time so a tradeoff has to be made whether correct implementation or correct usage and maintenance are more important in the given case. This means, it is necessary to consider KISS in addition to ML in order to find a suitable compromise.+  * **[[Keep It Simple Stupid]] (KISS)**: On the one hand a simpler design is less prone to implementation errors. In this aspectKISS is similar to ML. On the other handit is sometimes more complicated to make a design "fool-proof" so usage and maintenance mistakes are prevented. In this aspect KISS is rather a contrary principle. Both apply at the same time so a tradeoff has to be made whether correct implementation or correct usage and maintenance are more important in the given case. This means, it is necessary to consider KISS in addition to ML in order to find a suitable compromise.
  
 ==== Complementary Principles ==== ==== Complementary Principles ====
Line 88: Line 88:
 ===== Example ===== ===== Example =====
  
 +==== Example 1: Parameters ====
 +
 +Suppose there are two methods of a string class ''replaceFirst()'' and ''replaceAll()'' which replace the first or all occurrences of a certain substring, respectively. 
 +
 +The following method signatures are a bad choice:
 +<code java>
 +replaceFirst(String pattern, string replacement)
 +replaceAll(String replacement, string pattern)
 +</code>
 +Eventually someone will mix up the order of the parameters leading to a fault in the software which is not detectable by the compiler. 
 +
 +So it is better to make parameter lists consistent:
 +<code java>
 +replaceFirst(String pattern, string replacement)
 +replaceAll(String pattern, string replacement)
 +</code>
 +This is less error prone. When for example a call to ''replaceFirst()'' is replaced by a call to ''replaceAll()'', one cannot forget to exchange the parameters anymore. This is how it is done in the [[http://docs.oracle.com/javase/7/docs/api/java/lang/String.html#replaceFirst(java.lang.String, java.lang.String)|Java API]].
 +
 +But here still one could mix up the two string parameters. Although this is less likely, as having the substring to look for first is "natural", such a mistake is still possible. An alternative would be the following:
 +<code java>
 +replaceFirst(Pattern pattern, string replacement)
 +replaceAll(Pattern pattern, string replacement)
 +</code>
 +Here both methods expect a ''Pattern'' object instead of a regular expression expressed in a string. Mixing up the parameters is impossible in this case as the compiler would report that error. On the other hand using these methods becomes a bit more complicated: 
 +<code java>
 +"This are a test.".replaceFirst(new Pattern("are"), "is");
 +</code>
 +((Note that in the Java API it would rather be ''Pattern.compile()'' instead of ''new Pattern()''; see [[http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html|Java API: Pattern]]))
 +instead of
 +<code java>
 +"This are a test.".replaceFirst("are", "is");
 +</code>
 +The [[Keep It Simple Stupid|KISS-Principle]] is about this disadvantage.
 +
 +==== Example 2: Casts and Generics ====
 +
 +Another example for the application of Murphy's Law would be the avoidance of typecasts:
 +
 +<code java>
 +List l = new ArrayList();
 +l.add(5);
 +return (Integer)l.get(0) * 3;
 +</code>
 +
 +This works but it makes a cast necessary and every cast circumvents type checking by the compiler. This means it is theoretically possible that during maintenance someone will make a mistake and store a value other than Integer in the list:
 +<code java>
 +l.add("7");
 +</code>
 +Murphy's Law claims that however unlikely such a mistake might seem, eventually someone will make it. So it is better to avoid it. In this case this could be done using Generics:
 +<code java>
 +List<Integer> l = new ArrayList<Integer>();
 +l.add(5);
 +return l.get(0) * 3;
 +</code>
 +Here this mistake is impossible as the compiler only allows storing integers.
 +
 +Note that the typecast is rather a symptom than the actual problem here. The problem is, that the ''List'' interface is not generic and the symptom is the typecast. The reason for this flaw is, that the ''List'' interface predates the introduction of generics in Java.
  
  
Line 93: Line 150:
 /* Choose one of the following and comment out the rest: */ /* Choose one of the following and comment out the rest: */
 /*[[wiki:Stub]]*/ /*[[wiki:Stub]]*/
-[[wiki:Incomplete]] +/*[[wiki:Incomplete]]*
-/*[[wiki:Complete]]*/+[[wiki:Complete]]
  
  
Line 101: Line 158:
   * [[wp>Murphy's Law]]   * [[wp>Murphy's Law]]
   * [[wiki>MurphysLaw]]   * [[wiki>MurphysLaw]]
-  * [[http://www.murphys-laws.com|murphys-laws.com]]+
principles/murphy_s_law.txt · Last modified: 2021-10-20 21:18 by christian