如何从默认构造函数调用带参数的构造函数?

huangapple go评论71阅读模式
英文:

how to call parameterized constructor from default constructor?

问题

我想在公共Java类的默认构造函数中调用带参数的构造函数。

我可以实现吗?

public Rectangle()
{
Rectangle(10.5f,2.5f)     //这不起作用
}
public Rectangle(float length, float breadth)
{
code...
}
英文:

I want to call parameterized constructor from default constructor inside a public java class.

Can I achieve it?

public Rectangle()
{
Rectangle(10.5f,2.5f)     //this not working
}
public Rectangle(float length, float breadth)
{
code...
}

答案1

得分: 3

你可以使用this关键字。

这应该可以解决问题:

public Rectangle() {
    this(10.5f, 2.5f);
}

public Rectangle(float length, float breadth) {
    //代码..
}
英文:

You can use the this keyword.

This should do the trick:

public Rectangle() {
    this(10.5f, 2.5f);
}

public Rectangle(float length, float breadth) {
    //code..
}

huangapple
  • 本文由 发表于 2020年8月7日 19:01:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/63300467.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定