当前位置:   article > 正文

设计模式简介-笔记

设计模式简介-笔记

=======================================================================

设计模式推荐一个在线视频,讲的很不错,链接如下:

https://www.bilibili.com/video/BV1Yr4y157Ci?vd_source=f42f5dca8fddf859c6fee556cb2c3dbf

推荐书籍:

《设计模式-可复用面向对象的软件基础》
《Head First设计模式》
大话设计模式

=======================================================================


目标:
理解松耦合设计思想
掌握面向对象设计原则
掌握重构技法改善设计
掌握GOF核心设计模式

什么是设计模式
“每一个模式描述了一个在我们周围不断重复发生的问题以及该问题的解决方案核心。这样,你就能一次又一次地使用该方案而不必做重复劳动”---Chritopher Alexander

GOF设计模式
《设计模式:可复用面向对象软件的基础》---书中描述了23中经典面向对象设计模式,创立了模式在软件中地位。

面向对象
底层思维:向下,如何把握机器底层从微观理解对象构造
语言构造、编译转换、内存模型、运行时机制


抽象思维:向上,如何将我们的周围世界抽象为程序代码
面向对象、组件封装、设计模式、架构模式

深入理解面向对象
向下:深入理解三大面向对象机制
封装:隐藏内部实现
继承:复用现有代码
多态:改写对象行为


向上:深刻把握面向对象机制所带来的抽象意义,如何理解使用这些机制来表达现实世界,掌握什么是“好的面向对象设计”。

软件设计固有的复杂性
建筑商从来不会去想给一栋已建好的100层高的楼房底下在新建一个小地下室---这样做花费极大而且注定要失败。然而令人惊奇的是,软件系统的用户在要求作为类似改变时却不会仔细考虑,而且他们认为这只是需要简单编程的事。---- Objective-Oriented Analysis and Design with Applications

软件设计复杂的根本原因

变化
客户需求的变化
技术平台的变化
开发团队的变化
市场环境的变化
 。。。。。。

如何解决复杂性
分解:
人们面对复杂性有一个常见的做法:即分而治之,将大问题分解为多个小问题,将复杂问题分解为多个简单问题

抽象:
更高层次来讲,人们处理复杂性有一个通用的技术,即抽象。由于不能掌握全部的复杂对象,我们选择忽视它的非本质的细节,而去处理泛华和理想化的对象模型。

如下是从分解和抽象两个维度的代码实现版本(感受需求变化代码改动情况)

Shape1.h:

  1. #pragma once
  2. // 分解
  3. class Point{
  4. public:
  5. int x;
  6. int y;
  7. };
  8. class Line{
  9. public:
  10. Point start;
  11. Point end;
  12. Line(const Point& start, const Point& end) {
  13. this->start = start;
  14. this->end = end;
  15. }
  16. };
  17. class Rect {
  18. public:
  19. Point left_up;
  20. int width;
  21. int height;
  22. Rect(const Point& left_up, const int width, const int height) {
  23. this->left_up = left_up;
  24. this->width = width;
  25. this->height = height;
  26. }
  27. };
  28. // 变化
  29. class Circle {
  30. // ...
  31. };

MainForm1.cpp :

  1. #include "Sharpe1.h"
  2. #include <vector>
  3. using namespace std;
  4. class MainForm : public Form {
  5. private:
  6. Point p1;
  7. Point p2;
  8. vector<Line> vc_line;
  9. vector<Rect> vc_rect;
  10. // 变化
  11. vector<Circle> vc_circle;
  12. public:
  13. MainForm() {
  14. // ...
  15. }
  16. protected:
  17. virtual void OnMouseDown(const MouseEventArgs& e);
  18. virtual void OnMouseUp(const MouseEventArgs& e);
  19. virtual void OnPaint(const MouseEventArgs& e);
  20. };
  21. void MainForm::OnMouseDown(const MouseEventArgs& e) {
  22. p1.x = e.X;
  23. p1.y = e.Y;
  24. // ...
  25. Form::OnMouseDown(e);
  26. }
  27. void MainForm::OnMouseUp(const MouseEventArgs& e) {
  28. p2.x = e.X;
  29. p2.y = e.Y;
  30. if (rdoLine.Checked){
  31. Line line(p1, p2);
  32. vc_rect.push_back(line);
  33. }
  34. else if(rdoRect.Checked){
  35. int width = abs(p2.x - p1.x);
  36. int height = abs(p2.y - p2.y);
  37. Rect rect(p1, width, height);
  38. vc_rect.push_back(rect);
  39. }
  40. else if (rdoCircle.Checked) {
  41. {
  42. // 变化
  43. }
  44. // ...
  45. this->Refresh();
  46. Form::OnMouseUp(e);
  47. }
  48. void MainForm::OnPaint(const MouseEventArgs& e) {
  49. // 针对直线
  50. for (auto& iter_line : vc_line)
  51. {
  52. e.Graphics.DrawLine(Pens.Red,
  53. iter_line.start.x,
  54. iter_line.end.y,
  55. iter_line.end.x,
  56. iter_line.end.y);
  57. }
  58. // 针对矩形
  59. for (auto& iter_rect : vc_rect)
  60. {
  61. e.Graphics.DrawRectangle(Pens.Red,
  62. iter_rect.left_up,
  63. iter_rect.width,
  64. iter_rect.height);
  65. }
  66. // 变化
  67. for (auto& iter_circle : vc_circle)
  68. {
  69. // ...
  70. }
  71. //...
  72. Form::OnPaint(e);
  73. }

Shape1.h和MainForm1.cpp是第一个版本(分解的实现),客户变化,需要实现一个圆形,可以查看代码中标记未变化的地方,是为了满足客户需求做的改动,可以看出由于需求的变化,Shape1.h和MainForm1.cpp代码都进行了修改。

Shape2.h:

  1. #pragma once
  2. // 抽象
  3. class Shape {
  4. public:
  5. virtual void Draw(const Graphics& g) = 0;
  6. virtual ~Shape() {}
  7. };
  8. class Point {
  9. public:
  10. int x;
  11. int y;
  12. };
  13. class Line : public Shape{
  14. public:
  15. Point start;
  16. Point end;
  17. Line(const Point& start, const Point& end) {
  18. this->start = start;
  19. this->end = end;
  20. }
  21. virtual void Draw(const Graphics& g) {
  22. g.DrawLine(Pens.Red,
  23. start.x, start.y, end.x, end.y);
  24. }
  25. };
  26. class Rect : public Shape{
  27. public:
  28. Point left_up;
  29. int width;
  30. int height;
  31. Rect(const Point& left_up, const int width, const int height) {
  32. this->left_up = left_up;
  33. this->width = width;
  34. this->height = height;
  35. }
  36. virtual void Draw(const Graphics& g) {
  37. e.Graphics.DrawRectangle(Pens.Red,
  38. left_up,
  39. width,
  40. height);
  41. }
  42. };
  43. // 变化
  44. class Cicle : public Shape {
  45. public:
  46. virtual void Draw(const Graphics& g) {
  47. e.Graphics.DrawCicle(...);
  48. }
  49. };

MainForm2.cpp:

  1. #include "Shape2.h"
  2. #include <vector>
  3. using namespace std;
  4. class MainForm : public Form {
  5. private:
  6. Point p1;
  7. Point p2;
  8. vector<Shape*> vc_shape;
  9. public:
  10. MainForm() {
  11. // ...
  12. }
  13. protected:
  14. virtual void OnMouseDown(const MouseEventArgs& e);
  15. virtual void OnMouseUp(const MouseEventArgs& e);
  16. virtual void OnPaint(const MouseEventArgs& e);
  17. };
  18. void MainForm::OnMouseDown(const MouseEventArgs& e) {
  19. p1.x = e.X;
  20. p1.y = e.Y;
  21. // ...
  22. Form::OnMouseDown(e);
  23. }
  24. void MainForm::OnMouseUp(const MouseEventArgs& e) {
  25. p2.x = e.X;
  26. p2.y = e.Y;
  27. if (rdoLine.Checked){
  28. vc_shape.push_back(new Line(p1, p2));
  29. }
  30. else if(rdoRect.Checked){
  31. int width = abs(p2.x - p1.x);
  32. int height = abs(p2.y - p2.y);
  33. vc_shape.push_back(new Rect(p1, width, height));
  34. }
  35. else if(...)
  36. {
  37. // 变化
  38. vc_shape.push_back(new Cicle());
  39. }
  40. // ...
  41. Form::OnMouseUp(e);
  42. }
  43. void MainForm::OnPaint(const MouseEventArgs& e) {
  44. // 针对所有形状
  45. for (auto& iter_shape : vc_shape)
  46. {
  47. iter_shape->Draw(g); // 多态调用,各负其责
  48. }
  49. //...
  50. Form::OnPaint(e);
  51. }

Shape2.h和MainForm2.cpp是第二个版本(抽象的实现),客户变化,需要实现一个圆形,需要增加一个Cicle的类,MainForm2中创建Cicle对象,只需要改动这两处,可以看出第二个版本由于第一个版本。

什么是好的软件设计?软件设计的金科玉律:复用!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/430738
推荐阅读
相关标签
  

闽ICP备14008679号