我知道可以通过使用“this”从另一个构造函数调用一个构造函数。
但我想知道的是,为什么我们这样做(即从另一个构造函数调用构造函数)
任何人都可以提供一个简单的例子,说明这可能实际有用吗?
答案 0 :(得分:10)
ArrayList就是一个很好的例子。默认构造函数调用获取底层数组初始容量的构造函数。这看起来像这样:
public ArrayList()
{
this(10);
}
public ArrayList(int capacity)
{
objects = new Object[capacity];
}
答案 1 :(得分:2)
如果我们不想复制代码:
class Foo{
int requiredParam;
String name;
double optionalPrice;
Object extraObject;
public Foo(int rp, String name){
this.requiredParam=rp;
this.name=name
}
public Foo(int rp, String name, double op, Object e){
this(rp, name);
this.optionalPrice=op;
this.extraObject=e;
}
答案 2 :(得分:1)
这样一个简单的类怎么样:
class Person {
String name;
Person(String firstName, String lastName) {
this(firstName + lastName);
}
Person(String fullName) {
name = fullName;
}
}
不同的构造函数使您可以自由地创建不同风格的类似对象。