Browse Source

完成适配器模式文件

Gogs 2 months ago
parent
commit
9ead6d9053
3 changed files with 76 additions and 2 deletions
  1. 1 1
      .gitignore
  2. 71 0
      adapter.cpp
  3. 4 1
      build.sh

+ 1 - 1
.gitignore

@@ -2,6 +2,6 @@ test/builder
 test/CRTP
 test/factory
 test/signal
-
+test/adapter
 
 .vscode/

+ 71 - 0
adapter.cpp

@@ -0,0 +1,71 @@
+#include<iostream>
+#include<vector>
+
+//适配器模式
+//适配器模式的核心是对原有的接口进行封装,并且对原有的数据类型进行重整的一种设计模式
+
+//我们有如下这样的数据
+struct point           //一个点
+{
+    int x,y;
+};
+
+
+struct line
+{
+    point begin;
+    point end;
+};
+
+//目标用户的函数(一般来自与库或者框架)对数据有特殊要求
+void aim_fun(std::vector<line> rectangle)          //目标函数期待传入一个矩形
+{}
+
+
+//但是我们设计的数据只有点和线,即我们需要对我们的数据进行拼装以适应对应的框架
+
+class adapter_lazy           //懒汉式
+{
+private:
+    line& line_1;
+    line& line_2;
+    line& line_3;
+    line& line_4;
+    std::vector<line> rectangle;
+public:
+    adapter_lazy(line& a,line& b,line& c,line& d):line_1(a),line_2(b),line_3(c),line_4(d){}
+    std::vector<line> create()
+    {
+        rectangle.emplace_back(line_1);
+        rectangle.emplace_back(line_2);
+        rectangle.emplace_back(line_3);
+        rectangle.emplace_back(line_4);
+        return rectangle;
+    }
+};
+
+
+class adapter_hungry          //懒汉式
+{
+private:
+
+    std::vector<line> rectangle;
+public:
+    adapter_hungry(line& line_1,line& line_2,line& line_3,line& line_4):rectangle(){
+        rectangle.emplace_back(line_1);
+        rectangle.emplace_back(line_2);
+        rectangle.emplace_back(line_3);
+        rectangle.emplace_back(line_4);
+    }
+    std::vector<line> create()
+    {
+
+        return rectangle;
+    }
+};
+
+
+int main()
+{
+    
+}

+ 4 - 1
build.sh

@@ -5,6 +5,7 @@ g++ -O3 ../CRTP.cpp -o CRTP -std=c++20
 g++ -O3 ../builder.cpp -o builder -std=c++20
 g++ -O3 ../factory.cpp  -o factory -std=c++20
 g++ -O3 ../signal.cpp  -o signal -std=c++20
+g++ -O3 ../adapter.cpp -o adapter -std=c++20
 echo "开始运行"
 echo "--builder.cpp"
 ./builder
@@ -13,4 +14,6 @@ echo "--CRTP.cpp"
 echo "--factory.cpp"
 ./factory
 echo "--signal.cpp"
-./signal
+./signal
+echo "--adapter.cpp"
+./adapter