Difference between revisions of "Pattern Implementation Matters/alx"

From Open Pattern Repository for Online Learning Systems
Jump to navigation Jump to search
(Added category)
(Added category)
Line 52: Line 52:
As Ralph Johnson says in Goldfedder & Rising<ref name="Goldfedder">Goldfedder, B., & Rising, L. (1996). [http://dl.acm.org/citation.cfm?id=236171 A training experience with patterns]. ''Communications of the ACM, 39''(10), 60-64.</ref>: “...people can’t learn patterns without trying them out.”. It is hard for non-experienced programmers to realize the power of patterns without a concrete application of them<ref name="Astrachan">Astrachan, O., Mitchener, G., Berry, G., & Cox, L. (1998). [http://dl.acm.org/citation.cfm?id=273182 Design patterns: an essential component of CS curricula]. In ''ACM SIGCSE Bulletin'' (Vol. 30, No. 1, pp. 153-160). ACM.</ref>.  
As Ralph Johnson says in Goldfedder & Rising<ref name="Goldfedder">Goldfedder, B., & Rising, L. (1996). [http://dl.acm.org/citation.cfm?id=236171 A training experience with patterns]. ''Communications of the ACM, 39''(10), 60-64.</ref>: “...people can’t learn patterns without trying them out.”. It is hard for non-experienced programmers to realize the power of patterns without a concrete application of them<ref name="Astrachan">Astrachan, O., Mitchener, G., Berry, G., & Cox, L. (1998). [http://dl.acm.org/citation.cfm?id=273182 Design patterns: an essential component of CS curricula]. In ''ACM SIGCSE Bulletin'' (Vol. 30, No. 1, pp. 153-160). ACM.</ref>.  


The solution is supported by the pedagogical pattern {{Patternlink|Prefer Writing}}<ref name="Bergin2012">Bergin, J., Eckstein, J., Völter, M., Sipos, M., Wallingford, E., Marquardt, K., Chandler, J., Sharp, H., and Manns, M.L. (2012). Pedagogical patterns: advice for educators. Joseph Bergin Software Tools.</ref>, which encourages the use of written exercises and includes also the writing of source code.
The solution is supported by the pedagogical pattern {{Patternlink|Prefer Writing}}<ref name="Bergin2012">Bergin, J., Eckstein, J., Völter, M., Sipos, M., Wallingford, E., Marquardt, K., Chandler, J., Sharp, H., and Manns, M.L. (2012). ''Pedagogical patterns: advice for educators''. Joseph Bergin Software Tools.</ref>, which encourages the use of written exercises and includes also the writing of source code.


Having students implementing design patterns on their own helps in getting a better understanding of the solution in general. If a concrete pattern implementation is given to the students, there will be a higher chance that they recognize the participants of the pattern and the roles they play. So even if they use code generation, having implemented a pattern on their own helps them in using it the correct way and to understand the generated code.
Having students implementing design patterns on their own helps in getting a better understanding of the solution in general. If a concrete pattern implementation is given to the students, there will be a higher chance that they recognize the participants of the pattern and the roles they play. So even if they use code generation, having implemented a pattern on their own helps them in using it the correct way and to understand the generated code.
Line 71: Line 71:
<references/>
<references/>


[[Category:Design_patterns]] [[Category:Full_Pattern]]<!-- List of other categories the design pattern belongs to. The syntax for linking to a category is: [[Category:<Name of category]] -->
[[Category:Design_patterns]] [[Category:Full_Pattern]] [[Category:Pattern Language for Teaching Design Patterns]] [[Category:Traditional Classroom]]<!-- List of other categories the design pattern belongs to. The syntax for linking to a category is: [[Category:<Name of category]] -->

Revision as of 12:06, 15 May 2017


Pattern Implementation Matters
Contributors Christian Köppe
Last modification May 15, 2017
Source Köppe (2011)[1][2]; Köppe (2013)[3]
Pattern formats OPR Alexandrian
Usability
Learning domain
Stakeholders

Also Known As: Implementation Matters (Implementation Matters)


Pattern Implementation Matters-alx.png
Knowing is not enough; we must apply. Willing is not enough; we must do.
-Johann Wolfgang von Goethe


The concept of patterns is often abstract to students when first introduced to it. Especially the solution of a pattern is described on a high abstraction level, which makes it hard for students to see how this solution could or should be implemented in a concrete context.

***

The students have difficulties with implementing the solutions of patterns if they only read or hear about them. It is hard for them to add the information necessary for the pattern implementation, which has been abstracted away during the definition of the pattern.


Similar to programming techniques, it is not sufficient to just know about the solution a specific design pattern describes in order to use it in the intended way. E.g. the concept of recursion should be implemented and played with in order to get a real understanding of it. The process of unfolding to specific needs is generally an essential part of using abstractions like patterns.


Abstract vs. Concrete. Design pattern solutions are usually given in an abstract way. The participants are described and the structure is shown in a class diagram. However, all these stay on an abstract level for the student. Even if a sample implementation is given for a specific problem, the students still might have problems on how to apply the pattern for their own concrete problem. It is not an easy task applying an abstract solution to a concrete problem.


Implementation Complexity. Some patterns are easy to implement, while others are much more complex. This difference is not easily comprehensible for students.


Code Generation. Some development tools offer support for the application of design patterns[4]. These tools generate most of the code which makes up the important parts of a pattern implementation. The students do often not study this generated code and take for granted that this code reflects the best possible implementation of the pattern solution independent of the rest of their implementation. So if they have to implement a pattern on their own — without using the generating facilities of such an IDE — or if they have to recognize patterns in source code, they are likely to fail.


***

Therefore: let the students implement some pattern solutions themselves.


With software design patterns it is always possible to implement them, and this helps students to understand the transformation from abstract pattern solution to concrete implementation better. However, this is not always easily possible in other domains. E.g. the patterns of Alexander can mostly not be implemented in the context of a course on architecture, and educational patterns at curriculum level might also be too big to be implemented during a course on didactics. This pattern is therefore considered as an invariant in the domain of teaching software design patterns.

As Ralph Johnson says in Goldfedder & Rising[5]: “...people can’t learn patterns without trying them out.”. It is hard for non-experienced programmers to realize the power of patterns without a concrete application of them[6].

The solution is supported by the pedagogical pattern Prefer Writing (Prefer Writing)[7], which encourages the use of written exercises and includes also the writing of source code.

Having students implementing design patterns on their own helps in getting a better understanding of the solution in general. If a concrete pattern implementation is given to the students, there will be a higher chance that they recognize the participants of the pattern and the roles they play. So even if they use code generation, having implemented a pattern on their own helps them in using it the correct way and to understand the generated code.

This pattern is just a part of the whole language and should not be used in isolation. Pattern Implementation Matters (Pattern Implementation Matters) can be used in combination with Experience of Benefits (Experience of Benefits), but does not have to. After using Pattern Implementation Matters (Pattern Implementation Matters) it is advisable to also ensure a Principle-Supporting Pattern Usage (Principle-Supporting Pattern Usage) and that the students put Simplicity Above Patterns (Simplicity Above Patterns).

The applicability of this pattern depends on the domain of the patterns. If the implementation is not realistic in the scope of the educational setting due to time or space constraints, then alternatives as e.g. working with a prototype or modelling the solution could be considered.

Probably all courses on design patterns include the implementation of at least a few of them. In our course the students had, among others, to implement e.g. the Strategy (Strategy) pattern. This exercise was then also used to give them the Experience of Benefits (Experience of Benefits). Another exercise included the implementation of the Facade (Facade) pattern. Many more examples can be found in the references section.

In Head First Design Patterns[8] many implementation exercises are included.


The assignments for the course on software architecture at the University of Vienna all require the implementation of different architectural patterns.


References

  1. Patlet first published in Köppe, C. (2011). A pattern language for teaching design patterns (part 1). In Proceedings of the 16th European Conference on Pattern Languages of Programs (p. 2). ACM:New York.
  2. Pattern first published in Köppe, C. (2011). A pattern language for teaching design patterns (part 2). In Proceedings of the 18th Conference on Pattern Languages of Programs. ACM:New York.
  3. Köppe, C. (2013). A Pattern Language for Teaching Design Patterns. In Transactions on Pattern Languages of Programming III (pp. 24-54). Springer Berlin Heidelberg.
  4. Design pattern generation support can be found e.g. in the Netbeans IDE or in the Eclipse IDE (using PatternBox, http://www.patternbox.com).
  5. Goldfedder, B., & Rising, L. (1996). A training experience with patterns. Communications of the ACM, 39(10), 60-64.
  6. Astrachan, O., Mitchener, G., Berry, G., & Cox, L. (1998). Design patterns: an essential component of CS curricula. In ACM SIGCSE Bulletin (Vol. 30, No. 1, pp. 153-160). ACM.
  7. Bergin, J., Eckstein, J., Völter, M., Sipos, M., Wallingford, E., Marquardt, K., Chandler, J., Sharp, H., and Manns, M.L. (2012). Pedagogical patterns: advice for educators. Joseph Bergin Software Tools.
  8. Freeman, E., Robson, E., Bates, B., & Sierra, K. (2004). Head first design patterns. O'Reilly Media, Inc..