我试图了解我在这里做错了

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;
        }
    }


显然,这给了我一个错误:无法在公共静态Roots findRoots的最后一行找到符号,但是我不知道还有什么其他方法可以调用mutator

最佳答案

更换有什么问题

Roots(x1, x2);




return new Roots(x1, x2);




另外,我也不知道您对“变种”的理解是什么,但是您可能希望在Java初学者指南中查找的关键字是“构造函数”。

08-04 22:30