gpt4 book ai didi

java - 在 Java 中使用 "this"

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:48:31 26 4
gpt4 key购买 nike

<分区>

你好,我对 Java 还是有点陌生​​。当涉及到实例变量时,我得到了“this”的概念,但是当我在没有参数的构造函数中使用它时,我有点困惑。所以我的问题是这样的事情是如何工作的?

private double x;
private double y;

public static final double EPSILON = 1e-5;
public static boolean debug = false;


public Point(double x, double y){
this.x=x;
this.y=y; // Done sets the x,y private types to the x,y type provided in the ()
}

public Point(){
this(0.0,0.0); //Sets, x and y to doubles of 0.0,0.0??
} //How does this work?

我的 point() 构造函数会通过调用点 (x,y) 构造函数来创建 (0.0,0.0) 的原点吗?对此的任何澄清都会对我有很大帮助!

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