JAVA构造对象的几种方式(构建器、构造器)

大家好,我是烤鸭:

    今天说一下初始化对象的几种方式:

        1.    多参数构造器

        2.    构建器

        3.    构造器后 + get/set方法


举个例子:

    这里有个机构entity,提供一个默认构造器

package com.xxx.xxx.modules.sys.entity;/*** 机构Entity* @version 2013-05-15*/
public class Office {private static final long serialVersionUID = 1L;private Area area;		// 归属区域private String code; 	// 机构编码private String type; 	// 机构类型(1:公司;2:部门;3:小组)private String grade; 	// 机构等级(1:一级;2:二级;3:三级;4:四级)private String address; // 联系地址private String zipCode; // 邮政编码private String master; 	// 负责人private String phone; 	// 电话private String fax; 	// 传真private String email; 	// 邮箱private String useable;//是否可用private User primaryPerson;//主负责人private User deputyPerson;//副负责人private List<String> childDeptList;//快速添加子部门private String officeCode; //新增字段,门店id,和code值一样private String businessArea; //2.0新增字段,营业面积private String businessHours; //2.0新增字段,营业时间public Office(){super();}
}

如果想创建一个这样的对象进行参数传递或者进行其他操作(数据库等等)


1.   多参数构造器

       这是全参构造器:

public Office(Area area, String code, String type, String grade, String address, String zipCode, String master, String phone, String fax, String email, String useable, User primaryPerson, User deputyPerson, List<String> childDeptList, String officeCode, String businessArea, String businessHours, String jxName) {this.area = area;this.code = code;this.type = type;this.grade = grade;this.address = address;this.zipCode = zipCode;this.master = master;this.phone = phone;this.fax = fax;this.email = email;this.useable = useable;this.primaryPerson = primaryPerson;this.deputyPerson = deputyPerson;this.childDeptList = childDeptList;this.officeCode = officeCode;this.businessArea = businessArea;this.businessHours = businessHours;this.jxName = jxName;}


2.   构建

     这是全参构建器:

private Office(Office.Builder builder){this.id = builder.id;this.area = builder.area;this.code = builder.code;this.type = builder.type;this.grade = builder.grade;this.address = builder.address;this.name = builder.name;this.email = builder.email;this.phone = builder.phone;this.zipCode = builder.zipCode;this.master = builder.master;this.parent = builder.parent;this.parentIds = builder.parentIds;this.fax = builder.fax;this.sort = builder.sort;this.primaryPerson = builder.primaryPerson;this.deputyPerson = builder.deputyPerson;this.childDeptList = builder.childDeptList;this.officeCode = builder.officeCode;this.businessArea = builder.businessArea;this.useable = builder.useable;this.businessHours = builder.businessHours;this.delFlag = builder.delFlag;this.createBy = builder.createBy;this.updateBy = builder.updateBy;this.updateDate = builder.updateDate;this.createDate = builder.createDate;}//利用构建器创建对象public static class Builder extends Office{private static final long serialVersionUID = 1L;private Area area;		// 归属区域private String code; 	// 机构编码private String type; 	// 机构类型(1:公司;2:部门;3:小组)private String grade; 	// 机构等级(1:一级;2:二级;3:三级;4:四级)private String address; // 联系地址private String zipCode; // 邮政编码private String master; 	// 负责人private String phone; 	// 电话private String fax; 	// 传真private String email; 	// 邮箱private String useable;//是否可用private User primaryPerson;//主负责人private User deputyPerson;//副负责人private List<String> childDeptList;//快速添加子部门private String officeCode; //新增字段,门店id,和code值一样private String businessArea; //2.0新增字段,营业面积private String businessHours; //2.0新增字段,营业时间public Builder() {super();}public Builder id(String id){this.id = id;return this;}public Office build(){return new Office(this);}public Builder area(Area area){this.area = area;return this;}public Builder name(String name) {this.name = name;return this;}public Builder master(String master) {this.master = master;return this;}public Builder code(String code) {this.code = code;return this;}public Builder type(String type){this.type = type;return this;}public Builder grade(String grade) {this.grade = grade;return this;}public Builder address(String address) {this.address = address;return this;}public Builder zipCode(String zipCode) {this.zipCode = zipCode;return this;}public Builder password(String master) {this.master = master;return this;}public Builder parent(Office parent) {this.parent = parent;return this;}public Builder parentIds(String parentIds) {this.parentIds = parentIds;return this;}public Builder phone(String phone) {this.phone = phone;return this;}public Builder fax(String fax) {this.fax = fax;return this;}public Builder email(String email) {this.email = email;return this;}public Builder useable(String useable) {this.useable = useable;return this;}public Builder sort(Integer sort) {this.sort = sort;return this;}public Builder primaryPerson(User primaryPerson) {this.primaryPerson = primaryPerson;return this;}public Builder deputyPerson(User deputyPerson) {this.deputyPerson = deputyPerson;return this;}public Builder childDeptList(List<String> childDeptList) {this.childDeptList = childDeptList;return this;}public Builder officeCode(String officeCode) {this.officeCode = officeCode;return this;}public Builder businessArea(String businessArea) {this.businessArea = businessArea;return this;}public Builder businessHours(String businessHours) {this.businessHours = businessHours;return this;}public Builder delFlag(String delFlag) {this.delFlag = delFlag;if(StringUtils.isBlank(delFlag)){this.delFlag = IDBConstant.APPLICATION_DELETE_FLAG_VALID + "";}return this;}public Builder createBy(User createBy) {this.createBy = createBy;return this;}public Builder updateBy(User updateBy) {this.updateBy = updateBy;return this;}public Builder createDate(Date createDate) {this.createDate = createDate;return this;}public Builder updateDate(Date updateDate) {this.updateDate = updateDate;return this;}}


3.   get/set方法

     自动生成就行
        public List<String> getChildDeptList() {return childDeptList;}public void setChildDeptList(List<String> childDeptList) {this.childDeptList = childDeptList;}public String getUseable() {return useable;}public void setUseable(String useable) {this.useable = useable;}public User getPrimaryPerson() {return primaryPerson;}public void setPrimaryPerson(User primaryPerson) {this.primaryPerson = primaryPerson;}public User getDeputyPerson() {return deputyPerson;}public void setDeputyPerson(User deputyPerson) {this.deputyPerson = deputyPerson;}public Office getParent() {return parent;}public void setParent(Office parent) {this.parent = parent;}@NotNullpublic Area getArea() {return area;}public void setArea(Area area) {this.area = area;}@Length(min=1, max=1)public String getType() {return type;}public void setType(String type) {this.type = type;}@Length(min=1, max=1)public String getGrade() {return grade;}public void setGrade(String grade) {this.grade = grade;}@Length(min=0, max=255)public String getAddress() {return address;}public void setAddress(String address) {this.address = address;}@Length(min=0, max=100)public String getZipCode() {return zipCode;}public void setZipCode(String zipCode) {this.zipCode = zipCode;}@Length(min=0, max=100)public String getMaster() {return master;}public void setMaster(String master) {this.master = master;}@Length(min=0, max=200)public String getPhone() {return phone;}public void setPhone(String phone) {this.phone = phone;}@Length(min=0, max=200)public String getFax() {return fax;}public void setFax(String fax) {this.fax = fax;}@Length(min=0, max=200)public String getEmail() {return email;}public void setEmail(String email) {this.email = email;}@Length(min=0, max=100)public String getCode() {return code;}public void setCode(String code) {this.code = code;}@Overridepublic String toString() {return name;}public String getOfficeCode() {return officeCode;}public void setOfficeCode(String officeCode) {this.officeCode = officeCode;}public String getBusinessArea() {return businessArea;}public void setBusinessArea(String businessArea) {this.businessArea = businessArea;}public String getBusinessHours() {return businessHours;}public void setBusinessHours(String businessHours) {this.businessHours = businessHours;}
}public List<String> getChildDeptList() {return childDeptList;}public void setChildDeptList(List<String> childDeptList) {this.childDeptList = childDeptList;}public String getUseable() {return useable;}public void setUseable(String useable) {this.useable = useable;}public User getPrimaryPerson() {return primaryPerson;}public void setPrimaryPerson(User primaryPerson) {this.primaryPerson = primaryPerson;}public User getDeputyPerson() {return deputyPerson;}public void setDeputyPerson(User deputyPerson) {this.deputyPerson = deputyPerson;}public Office getParent() {return parent;}public void setParent(Office parent) {this.parent = parent;}@NotNullpublic Area getArea() {return area;}public void setArea(Area area) {this.area = area;}@Length(min=1, max=1)public String getType() {return type;}public void setType(String type) {this.type = type;}@Length(min=1, max=1)public String getGrade() {return grade;}public void setGrade(String grade) {this.grade = grade;}@Length(min=0, max=255)public String getAddress() {return address;}public void setAddress(String address) {this.address = address;}@Length(min=0, max=100)public String getZipCode() {return zipCode;}public void setZipCode(String zipCode) {this.zipCode = zipCode;}@Length(min=0, max=100)public String getMaster() {return master;}public void setMaster(String master) {this.master = master;}@Length(min=0, max=200)public String getPhone() {return phone;}public void setPhone(String phone) {this.phone = phone;}@Length(min=0, max=200)public String getFax() {return fax;}public void setFax(String fax) {this.fax = fax;}@Length(min=0, max=200)public String getEmail() {return email;}public void setEmail(String email) {this.email = email;}@Length(min=0, max=100)public String getCode() {return code;}public void setCode(String code) {this.code = code;}@Overridepublic String toString() {return name;}public String getOfficeCode() {return officeCode;}public void setOfficeCode(String officeCode) {this.officeCode = officeCode;}public String getBusinessArea() {return businessArea;}public void setBusinessArea(String businessArea) {this.businessArea = businessArea;}public String getBusinessHours() {return businessHours;}public void setBusinessHours(String businessHours) {this.businessHours = businessHours;}


4.    用法

        如果我想构造一个对象

    4.1    构造器

        直接上图吧:

    

    当我new Office()的时候,我不知道需要传入什么类型的参数,也不知道每个参数代表哪个字段。

多个字段的时候,不推荐这种方式。几个字段算多?我觉得5+吧。

    4.2    构建器

    

        上图的字段比例子中的多了几个, 构建器构造的对象很清晰,而且相对利于维护,构造器的话,需要修改构造方法,构建器在builder对象中加属性就好了。为什么说构建器更安全,因为一个对象在可能有多个构造器,通过构造器来创建,没法保证一致性。比如:new Office(id)和new Office(name),这两个对象怎么保证一致呢。

    4.3    get/set方法

        不演示了,就拿上图来说,set属性需要多少行代码?起码多两倍不止。


5.    关于构建器和构造器

    JavaBean模式自身有严重的缺点,因为构造过程被分到几个调用中,在构造过程中Javabean可能处于不一致的状态,类无法仅仅通过检验构造器参数的有效性来保证一致性。JavaBean模式阻止了把类做成不可变的可能,这就需要程序员付出额外的努力确保线程安全 。

Java中传统的抽象工厂实现是Class对象,newInstance方法总是企图调用类的无参构造器,这个构造器甚至可能根本不存在。Class.newInstance破坏了编译时的异常检查。Builder模式也存在不足。为了创建对象,必须先创建它的构建器。在十分注重性能的情况下,可能就成问题了。Builder模式还比重叠构造器模式更加冗长,因此它只在有很多参数的时候才使用,比如4个或者更多个参数。通常最好一开始就使用构建器。

  如果类的构造器或者静态工厂中具有多个参数,设计这种类时,Builder模式就是种不错的选择,特别是当大多数参数都是可选的时候。与使用传统的重叠构造器模式相比,使用Builder模式的客户端代码将更易于阅读和编写,构建器也比JavaBeans更加安全。


 参考资料

《Effective Java 中文版 第2版》 


        

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/412952.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[css] 请说说你对vh、vw的理解以及它们的运用场景是什么?

[css] 请说说你对vh、vw的理解以及它们的运用场景是什么&#xff1f; vw: 100vw为视窗的宽度&#xff0c;即1vw是视窗宽度的1%vh: 100vh为视窗的高度&#xff0c;即1vh是视窗高度的1%运用场景图片查看大图&#xff1a;img { max-height: 90vh; }代替rem实现移动端布局个人简介 …

Django框架(十二)-- Djang与Ajax

一、什么是Ajax AJAX&#xff08;Asynchronous Javascript And XML&#xff09;翻译成中文就是“异步Javascript和XML”。即使用Javascript语言与服务器进行异步交互&#xff0c;传输的数据为XML&#xff08;当然&#xff0c;传输的数据不只是XML,现在更多使用json数据&#xf…

javascript 将table导出 Excel ,可跨行跨列

原文地址&#xff1a;https://www.cnblogs.com/hailexuexi/p/10795887.html <script language"JavaScript" type"text/javascript">//jQuery HTML导出Excel文件(兼容IE及所有浏览器)function HtmlExportToExcel(tableid,file_name) {var filename fi…

[css] css怎么更改表单的单选框或下拉框的默认样式?

[css] css怎么更改表单的单选框或下拉框的默认样式&#xff1f; 下拉框select可以通过appearance:none去除默认样式&#xff0c;然后进行自定义&#xff0c;但是option标签不能通过CSS自定义&#xff0c;所以最佳方案是自定义标签重写select单选框隐藏input标签&#xff0c;自定…

wampserver 搭建 php环境 运行方法

大家好&#xff0c;我是烤鸭&#xff1a;今天分享的是如何用wamp 运行 php代码。1. wampserver下载&#xff1a;下载地址&#xff1a;https://sourceforge.net/projects/wampserver/files/WampServer%203/WampServer%203.0.0/Addons/Php/wampserver3_x64_addon_php7.2.7.exe…

Mysql数据库查询当前操作的数据库名

查询数据库名&#xff1a; select database()查询表结构&#xff1a; select * from INFORMATION_SCHEMA.TABLES where TABLE_NAME表名 and table_schema (select database())

redis的学习使用,第二章

在IDEA里面使用redis&#xff0c;使用架包 jedis-2.4.2.jar 1 public class Main {2 3 public static void main(String[] args) {4 Jedis jedis new Jedis("127.0.0.1",6379);5 //string类型6 jedis.set("java","aga…

[css] 你了解css3的currentColor吗?举例说明它的作用是什么?

[css] 你了解css3的currentColor吗&#xff1f;举例说明它的作用是什么&#xff1f; currentColor是 color 属性的值&#xff0c;具体意思是指&#xff1a;currentColor关键字的使用值是 color 属性值的计算值。如果currentColor关键字被应用在 color 属性自身&#xff0c;则相…

java php des加密 byte数组16进制 DESTools

大家好&#xff0c;我是烤鸭:今天分享的是java 和 php des 加密。因为接口对接&#xff0c;难免不同语言&#xff0c;加密又是必不可少的。作为接口的提供方&#xff0c;必须把加密规则写好&#xff0c;最好有不同语言的加密demo。1. java版本的des加密解密工具类DESTools.j…

BDD框架之Cucumber研究

BDD框架之Cucumber研究 引用链接&#xff1a;http://kongqingyun123.blog.163.com/blog/static/6377283520134158437813/ Cucumber是BDD&#xff08;行为驱动开发&#xff09;中成熟的一个框架&#xff0c;官方网址: http://cukes.info/1、cucumber安装1、安装ruby2、gem insta…

Oracle修改字段的顺序

一&#xff1a;简单粗暴 1,Oracle: create table CFORM_COULUMN_2 as &#xff08;select 字段A,字段B from CFORM_COULUMN);2,Sqlserver select 字段A,字段B.... into CFORM_COULUMN_2 from CFORM_COULUMN二&#xff1a;通过SYS数据库更新字段顺序 1&#xff0c;查询表…

[css] 怎么去掉点击a链接或者图片出现的边框?

[css] 怎么去掉点击a链接或者图片出现的边框&#xff1f; a{text-decoration:none} img{border:0 none}个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容易&#xff0c; 但坚持一定很酷。欢迎大家一起讨论 主目录 与歌谣一起通关前端面试题

springboot 2.x tomcat war包部署 localhost-startStop-1 启动卡顿卡死

大家好&#xff0c;我是烤鸭&#xff1a; 关于springboot war包部署tomcat。环境&#xff1a;springboot 2.0.3.RELEASEapache-tomcat-8.5.321. 修改pom <?xml version"1.0" encoding"UTF-8"?> <project xmlns:xsi"http://www.w3.org…

高可用Eureka注册中心配置说明(双机部署)

目 录 1. 高可用EureKa注册中心示意图 2. Eureka实例相互注册配置 3. 微服务注册到Eureka配置 4. 启动步骤及配置成功检查 5. 说明事项 1. 高可用EureKa注册中心示意图 Spring Cloud的Eureka Server的高可用实际上就是将自己作为服务向其他服注册中心注册自己&#xff0c;形成…

sql 把特定数据排在最前面

第一法】 select * from table where nameD UNION ALL select * from table where name<>D 第二法】SELECT CASE WHEN [name]D THEN 0 ELSE 1 END FLAG,* FROM TABLE order by flag asc

[css] css的linear-gradient有什么作用呢?

[css] css的linear-gradient有什么作用呢&#xff1f; 概念&#xff1a;线性渐变,向下/向上/向左/向右/对角方向,为了创建一个线性渐变&#xff0c;你必须至少定义两种颜色结点。颜色结点即你想要呈现平稳过渡的颜色。同时&#xff0c;你也可以设置一个起点和一个方向&#xff…

elasticsearch 6.x (四) 单一文档 API 介绍和使用 index和get API

大家好&#xff0c;我是烤鸭&#xff1a;今天分享的是官网6.x 单一文档(Single document APIs)APIs。本文这是部分翻译&#xff0c;如果想看全部的&#xff0c;还是建议阅读官方api。链接&#xff1a;https://www.elastic.co/guide/en/elasticsearch/reference/current/docs…

Dockerfile语法

Dockerfile 语法示例 Dockerfile语法由两部分构成&#xff0c;注释和命令参数 # Line blocks used for commentingcommand argument argument ..一个简单的例子&#xff1a; # Print "Hello docker!"RUN echo "Hello docker!"Dockerfile 命令 Dockerfile有…

[css] 会引起Reflow和Repaint的操作有哪些?

[css] 会引起Reflow和Repaint的操作有哪些&#xff1f; 页面布局和几何信息(比如&#xff1a;增加删除dom&#xff0c;改变元素位置或者尺寸等)发生改变时&#xff0c;会触发Reflow。 给dom节点添加样式&#xff0c;会触发Repaint。 触发Reflow一定会引起Repaint&#xff0c;触…

Centos7离线安装Mysql8

一&#xff0c;下载tar包 1&#xff0c;直接下载&#xff1a;https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.15-1.el7.x86_64.rpm-bundle.tar 2&#xff0c;百度网盘&#xff1a;https://pan.baidu.com/s/1V180rx0FVFuUOrnPMqrVpQ 提取码&#xff1a;08jx 二&…