有一些与此类似的主题,但我找不到一个有足够答案的主题。
我想知道Java中构造函数重载的最佳实践是什么。我已经对这个问题有了自己的想法,但我想听听更多建议。
我指的是简单类中的构造函数重载和构造函数重载,同时继承已经重载的类(意味着基类有重载的构造函数)。
谢谢:)
答案 0 :(得分:160)
虽然没有“官方指南”,但我遵循KISS和DRY的原则。使重载的构造函数尽可能简单,最简单的方法是只调用它(...)。这样你只需要检查一次并处理一次参数。
public class Simple {
public Simple() {
this(null);
}
public Simple(Resource r) {
this(r, null);
}
public Simple(Resource r1, Resource r2) {
// Guard statements, initialize resources or throw exceptions if
// the resources are wrong
if (r1 == null) {
r1 = new Resource();
}
if (r2 == null) {
r2 = new Resource();
}
// do whatever with resources
}
}
从单元测试的角度来看,测试类很容易,因为你可以将资源放入其中。如果该类有很多资源(或者像OO-geeks那样调用它的协作者),请考虑以下两种情况之一:
public class SimpleParams {
Resource r1;
Resource r2;
// Imagine there are setters and getters here but I'm too lazy
// to write it out. you can make it the parameter class
// "immutable" if you don't have setters and only set the
// resources through the SimpleParams constructor
}
Simple中的构造函数只需要拆分SimpleParams
参数:
public Simple(SimpleParams params) {
this(params.getR1(), params.getR2());
}
...或将SimpleParams
设为属性:
public Simple(Resource r1, Resource r2) {
this(new SimpleParams(r1, r2));
}
public Simple(SimpleParams params) {
this.params = params;
}
创建一个为您初始化资源的工厂类,如果初始化资源有点困难,这是有利的:
public interface ResourceFactory {
public Resource createR1();
public Resource createR2();
}
然后以与参数类相同的方式完成构造函数:
public Simple(ResourceFactory factory) {
this(factory.createR1(), factory.createR2());
}
是的......你可以根据当时更容易的方式混合和匹配两种方式。考虑到Simple
类它们以相同的方式使用,参数类和简单的工厂类几乎是一样的。
答案 1 :(得分:73)
我认为最佳做法是通过使用相关参数默认值调用this()
来使重载构造函数引用的单个主构造函数。这样做的原因是它使对象的构造状态更清楚 - 实际上你可以把主构造函数看作唯一真正的构造函数,其他人只是委托给它
其中一个示例可能是JTable
- 主构造函数采用TableModel
(加上列和选择模型),其他构造函数调用此主构造函数。
对于超类已经重载了构造函数的子类,我倾向于认为将任何父类的构造函数视为 primary 是合理的,并认为它是完全合法,没有一个主要的构造函数。例如,在扩展Exception
时,我经常会提供3个构造函数,其中一个只接受String
消息,一个接受Throwable
原因,另一个接受两者。这些构造函数中的每一个都直接调用super
。
答案 2 :(得分:6)
如果您有一个非常复杂的类,其中包含许多选项,其中只有一些组合有效,请考虑使用Builder。无论是代码还是逻辑上都能很好地工作。
Builder是一个嵌套类,其方法仅用于设置字段,然后ComplexClass构造函数仅将此类构建器作为参数。
编辑:ComplexClass构造函数可以确保Builder中的状态有效。如果你只是在ComplexClass上使用setter,这很难做到。
答案 3 :(得分:2)
这实际上取决于类的类型,因为并非所有类都是相同的。
作为一般准则,我建议2个选项:
答案 4 :(得分:0)
构造函数重载类似于方法重载。可以重载构造函数以不同的方式创建对象。
编译器根据构造函数中存在多少个参数以及其他参数(例如,传递参数的顺序)来区分构造函数。
有关Java构造函数的更多详细信息,请访问https://tecloger.com/constructor-in-java/
答案 5 :(得分:-1)
嗯,这是重载构造函数的一个例子。
public class Employee
{
private String name;
private int age;
public Employee()
{
System.out.println("We are inside Employee() constructor");
}
public Employee(String name)
{
System.out.println("We are inside Employee(String name) constructor");
this.name = name;
}
public Employee(String name, int age)
{
System.out.println("We are inside Employee(String name, int age) constructor");
this.name = name;
this.age = age;
}
public Employee(int age)
{
System.out.println("We are inside Employee(int age) constructor");
this.age = age;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public int getAge()
{
return age;
}
public void setAge(int age)
{
this.age = age;
}
}
在上面的示例中,您可以看到重载的构造函数。构造函数的名称相同,但每个构造函数都有不同的参数。
以下是一些资源,它们为java中的构造函数重载提供了更多的信息,