JAVA建造者模式-案例

Java建造者模式

//首先,创建一个产品类
public class Product {  
    private String name;  
    private int price;  
      
    public Product(String name, int price) {  
        this.name = name;  
        this.price = price;  
    }  
      
    public String getName() {  
        return name;  
    }  
      
    public int getPrice() {  
        return price;  
    }  
}
//然后,创建一个建造者类
public class Builder {  
    private Product product;  
      
    public Builder() {  
        this.product = new Product("", 0);  
    }  
      
    public void setName(String name) {  
        product.setName(name);  
    }  
      
    public void setPrice(int price) {  
        product.setPrice(price);  
    }  
      
    public Product build() {  
        return product;  
    }  
}
//接下来,创建一个客户端程序来使用这个建造者模式
public class Client {  
    public static void main(String[] args) {  
        Builder builder = new Builder();  
        builder.setName("iPad"); //设置产品名称属性值  
        builder.setPrice(599); //设置产品价格属性值  
        Product product = builder.build(); //构建产品对象并返回结果  
        System.out.println("Product Name: " + product.getName()); //输出产品名称属性值  
        System.out.println("Product Price: " + product.getPrice()); //输出产品价格属性值  
    }  
}

你可能感兴趣的:(设计模式,JavaSE笔记,java,建造者模式,开发语言,设计模式)