gpt4 book ai didi

java - 从另一个类的方法中调用 mutator

转载 作者:行者123 更新时间:2023-12-02 00:59:36 26 4
gpt4 key购买 nike

我试图理解我在这里做错了什么

import java.lang.Math

public class QuadraticEquation {
public static Roots findRoots(double a, double b, double c) {
double d = b*b-4*a*c;
double x1 = (-b + Math.sqrt(d))/2*a;
double x2 = (-b - Math.sqrt(d))/2*a;
Roots( x1, x2);

}

public static void main(String[] args) {
Roots roots = QuadraticEquation.findRoots(2, 10, 8);
System.out.println("Roots: " + roots.x1 + ", " + roots.x2);
}
}

class Roots {
public final double x1, x2;

public Roots(double x1, double x2) {
this.x1 = x1;
this.x2 = x2;
}
}

显然,它给了我一个错误:在public static Roots findRoots的最后一行找不到符号,但我不明白还有什么其他方式调用更改器(mutator)

最佳答案

更换有什么问题

Roots(x1, x2);

return new Roots(x1, x2);

另外,我不知道您对“mutator”的理解是什么,但您可能想在 Java 初学者指南中查找的关键字是“constructor”。

关于java - 从另一个类的方法中调用 mutator,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60864834/

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