引言
建造者模式,就是我们在使用到Retrofit的时候需要用到的设计模式,今天为了加深Retrofit中的建造者模式的理解,就来模拟一下建造者模式的基本逻辑。看看它是如何通过多个简单对象一步步构建成复杂对象的。
Retrofit其实我们可以理解为OkHttp的加强版,它也是一个网络加载框架。现如今Retrofit + RxJava已经成为了诸多项目中网络请求框架的标配。要了解其内部实现原理,首先就需要对其中使用到的设计模式做到了解!
简介
建造者模式(Builder Pattern):使用多个简单的对象一步一步构建成一个复杂的对象。这种类型的设计模式属于创建型模式,它提供了一种创建对象的最佳方式。
一个 Builder 类会一步一步构造最终的对象。该 Builder 类是独立于其他对象的。
详细介绍
意图:将一个复杂的构建与其表示相分离,使得同样的构建过程可以创建不同的表示。
主要解决:
主要解决在软件系统中,有时候面临着"一个复杂对象"的创建工作,其通常由各个部分的子对象用一定的算法构成;由于需求的变化,这个复杂对象的各个部分经常面临着剧烈的变化,但是将它们组合在一起的算法却相对稳定。
何时使用:一些基本部件不会变,而其组合经常变化的时候。
如何解决:将变与不变分离开。
关键代码:建造者:创建和提供实例,导演:管理建造出来的实例的依赖关系。
应用实例:
1、去肯德基,汉堡、可乐、薯条、炸鸡翅等是不变的,而其组合是经常变化的,生成出所谓的"套餐"。
2、JAVA 中的 StringBuilder。
3、Android中的Retrofit的创建使用过程。
优点: 1、建造者独立,易扩展。 2、便于控制细节风险。
缺点: 1、产品必须有共同点,范围有限制。 2、如内部变化复杂,会有很多的建造类。
使用场景:
1、需要生成的对象具有复杂的内部结构。
2、需要生成的对象内部属性本身相互依赖。
注意事项:与工厂模式的区别是:建造者模式更加关注与零件装配的顺序。
实践
步骤一:创建实体类
/**
* @data on 2020/10/30 12:00 PM
* @auther armStrong
* @describe 书类,用于模拟建造者模式的实体类
*/
public class Book {
private String id;
private String name;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Book(String id, String name) {
this.id = id;
this.name = name;
}
}
步骤二:创建含有建造者的类(建造者模式的实施者)
/**
* @data on 2020/10/30 12:07 PM
* @auther armStrong
* @describe 含有建造者的类,用于模拟建造者模式(Retrofit中的常用模式)
*/
public class MyRetrofit {
private String name;
private int age;
private List<Book> datas;
public MyRetrofit(String name, int age, List<Book> datas) {
this.name = name;
this.age = age;
this.datas = datas;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
public List<Book> getBooks() {
return datas;
}
//建造者模式具体实现代码
public static final class Builder{
private String name;
private int age;
private List<Book> datas;
public Builder(){
}
public Builder setName(String name) {
this.name = name;
return this;
}
public Builder setAge(int age) {
this.age = age;
return this;
}
public Builder setList(List<Book> books) {
this.datas = books;
return this;
}
public MyRetrofit build(){
return new MyRetrofit(this.name,this.age,this.datas);
}
}
}
步骤三:布局文件
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".blog.Case59"
tools:ignore="MissingConstraints">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:gravity="center"
android:textColor="@color/white"
android:textSize="20sp"
android:background="@color/blue"
android:text="设计模式:Builder创建者模式模拟" />
<TextView
android:id="@+id/tvContent"
android:singleLine="false"
android:textSize="18sp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_width="match_parent"
android:padding="10dp"
android:layout_height="wrap_content" />
</androidx.constraintlayout.widget.ConstraintLayout>
步骤四:在Activity中书写业务逻辑
//模拟建造者模式(这个设计模式主要应用在Retrofit中)
public class Case59 extends AppCompatActivity {
private MyRetrofit retrofit;
private TextView tvContent;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_case59);
MyRetrofitBuildTest();
tvContentShow();
}
//建造者模式应用
private void MyRetrofitBuildTest() {
List<Book> datas = new ArrayList();
datas.add(new Book("1", "《姜子牙》"));
datas.add(new Book("2", "《我和我的祖国》"));
datas.add(new Book("3", "《伍佰》"));
datas.add(new Book("4", "《我和我的家乡》"));
retrofit = new MyRetrofit.Builder()
.setName("千夜零一")
.setAge(23)
.setList(datas)
.build();
}
//将数据取出设置到TextView中展示出来
@SuppressLint("SetTextI18n")
private void tvContentShow(){
tvContent = findViewById(R.id.tvContent);
StringBuffer sb = new StringBuffer();
for (Book book : retrofit.getBooks()) { //遍历List取出对象
sb.append(book.getName()).append(",");
}
tvContent.setText("姓名:"+retrofit.getName()+"\n"+"年龄:"+retrofit.getAge()+"\n"+"喜欢:"+sb.toString());
}
}
网友评论