Skip to content
百科百科
操作系统
设计模式
算法
题解
java
leetcode
  • 设计模式
    • /设计模式/设计模式 - 单例.md
      • /设计模式/设计模式 - 中介者.md
        • /设计模式/设计模式 - 享元.md
          • /设计模式/设计模式 - 代理.md
            • /设计模式/设计模式 - 原型模式.md
              • /设计模式/设计模式 - 命令.md
                • /设计模式/设计模式 - 备忘录.md
                  • /设计模式/设计模式 - 外观.md
                    • /设计模式/设计模式 - 工厂方法.md
                      • /设计模式/设计模式 - 抽象工厂.md
                        • /设计模式/设计模式 - 桥接.md
                          • /设计模式/设计模式 - 模板方法.md
                            • /设计模式/设计模式 - 状态.md
                              • /设计模式/设计模式 - 生成器.md
                                • 5. 生成器(Builder)
                                  • Intent
                                    • Class Diagram
                                      • Implementation
                                        • JDK
                                      • /设计模式/设计模式 - 空对象.md
                                        • /设计模式/设计模式 - 策略.md
                                          • /设计模式/设计模式 - 简单工厂.md
                                            • /设计模式/设计模式 - 组合.md
                                              • /设计模式/设计模式 - 装饰.md
                                                • /设计模式/设计模式 - 观察者.md
                                                  • /设计模式/设计模式 - 解释器.md
                                                    • /设计模式/设计模式 - 访问者.md
                                                      • /设计模式/设计模式 - 责任链.md
                                                        • /设计模式/设计模式 - 迭代器.md
                                                          • /设计模式/设计模式 - 适配器.md
                                                            • 一、前言
                                                              • 一、概述
                                                                • 设计模式目录

                                                                  2022年5月21日小于 1 分钟

                                                                  此页内容
                                                                  • 5. 生成器(Builder)
                                                                    • Intent
                                                                    • Class Diagram
                                                                    • Implementation
                                                                    • JDK

                                                                  # 5. 生成器(Builder)

                                                                  # Intent

                                                                  封装一个对象的构造过程,并允许按步骤构造。

                                                                  # Class Diagram

                                                                  img

                                                                  # Implementation

                                                                  以下是一个简易的 StringBuilder 实现,参考了 JDK 1.8 源码。

                                                                  public class AbstractStringBuilder {
                                                                      protected char[] value;
                                                                  
                                                                      protected int count;
                                                                  
                                                                      public AbstractStringBuilder(int capacity) {
                                                                          count = 0;
                                                                          value = new char[capacity];
                                                                      }
                                                                  
                                                                      public AbstractStringBuilder append(char c) {
                                                                          ensureCapacityInternal(count + 1);
                                                                          value[count++] = c;
                                                                          return this;
                                                                      }
                                                                  
                                                                      private void ensureCapacityInternal(int minimumCapacity) {
                                                                          // overflow-conscious code
                                                                          if (minimumCapacity - value.length > 0)
                                                                              expandCapacity(minimumCapacity);
                                                                      }
                                                                  
                                                                      void expandCapacity(int minimumCapacity) {
                                                                          int newCapacity = value.length * 2 + 2;
                                                                          if (newCapacity - minimumCapacity < 0)
                                                                              newCapacity = minimumCapacity;
                                                                          if (newCapacity < 0) {
                                                                              if (minimumCapacity < 0) // overflow
                                                                                  throw new OutOfMemoryError();
                                                                              newCapacity = Integer.MAX_VALUE;
                                                                          }
                                                                          value = Arrays.copyOf(value, newCapacity);
                                                                      }
                                                                  }
                                                                  
                                                                  public class StringBuilder extends AbstractStringBuilder {
                                                                      public StringBuilder() {
                                                                          super(16);
                                                                      }
                                                                  
                                                                      @Override
                                                                      public String toString() {
                                                                          // Create a copy, don't share the array
                                                                          return new String(value, 0, count);
                                                                      }
                                                                  }
                                                                  
                                                                  public class Client {
                                                                      public static void main(String[] args) {
                                                                          StringBuilder sb = new StringBuilder();
                                                                          final int count = 26;
                                                                          for (int i = 0; i < count; i++) {
                                                                              sb.append((char) ('a' + i));
                                                                          }
                                                                          System.out.println(sb.toString());
                                                                      }
                                                                  }
                                                                  
                                                                  abcdefghijklmnopqrstuvwxyz
                                                                  

                                                                  # JDK

                                                                  • java.lang.StringBuilderopen in new window
                                                                  • java.nio.ByteBufferopen in new window
                                                                  • java.lang.StringBufferopen in new window
                                                                  • java.lang.Appendableopen in new window
                                                                  • Apache Camel buildersopen in new window
                                                                  编辑此页open in new window
                                                                  上次编辑于: 2022/5/21 13:08:59
                                                                  贡献者: yzqdev
                                                                  上一页
                                                                  /设计模式/设计模式 - 状态.md
                                                                  下一页
                                                                  /设计模式/设计模式 - 空对象.md
                                                                  powered by vuepress-theme-home