gpt4 book ai didi

java - 如何将构造函数传递给构造函数?

转载 作者:行者123 更新时间:2023-11-30 02:00:50 25 4
gpt4 key购买 nike

问题说“向 Point 类添加一个构造函数,该构造函数接受另一个 Point 作为参数,并将新 Point 初始化为具有相同的 (x, y) 值。在解决方案中使用关键字 this。”

public  class Point
{
int x;
int y;
//enter your code here
}

我把能想到的概念和方法都用了,但没有一个起作用。我的意思是如何将构造函数传递给构造函数!这是我想出的最好的办法。

 public Point(Point)
{
this.x=x;
this.y=y;
}

但这会产生错误。 “<标识符> 预期公共(public)点(Point)"

最佳答案

你的构造函数应该是:

public Point(Point p) {
this.x = p.x;
this.y = p.y;
}

通过这种方式,您可以将 p 的属性分配给类的属性。
您没有包含标识符 p
尽管如果这是该类的唯一构造函数,则该类是无用的,因为它需要一个预实例化的对象才能实例化一个新对象。

关于java - 如何将构造函数传递给构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52904699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com