Java,为什么Math.sqrt()返回0

问题描述 投票:-2回答:6

我正在尝试检查数字是否为正方形,如果数字是三角形。问题发生在sqrt(num),我测试的所有数字都返回0。 我正在使用在线编译器,尝试了几个编译器,因此它不是编译问题。试图将num声明为double和int,结果相同。 我是Java新手,但不是编程的新手,我在网上搜索,多次检查我的代码,一切看起来都很好,它甚至在添加变量以检查三角形数字之前按预期工作,但在声明变量checkTri和checkTriSqr之后,这开始发生了。我确定这与声明这些变量无关(几乎可以肯定),有人可以帮我理解这里发生了什么吗?

import static java.lang.Math.sqrt;
import static java.lang.Math.round;

public class Parent{

public static void main(String[] args){

    class Number
    {
        public int num ;
        double numSqr = sqrt(num );
        double roundNumSqr =  round(numSqr) ;
        double checkTri = 8 * num + 1 ;
        double checkTriSqr = sqrt(checkTri) ;

        public void prinTest()
        {
            System.out.println(num);
            System.out.println(numSqr);
            System.out.println(roundNumSqr);
            System.out.println(checkTri);
            System.out.println(checkTriSqr);
        }

        public boolean isSqr()
        {
            if (numSqr == roundNumSqr)
            {
                return true;
            }
            else
            {
                return false;
            }
        }

        public boolean isTriangular(){

            if (checkTriSqr * checkTriSqr == checkTri )
            {
                return true;
            }
            else
            {
                return false;
            }
        }
    }

    Number number = new Number();

    number.num = 350;
    number.prinTest();
    System.out.println(number.isSqr());
    System.out.println(number.isTriangular());
 }
}

编辑:以下屏幕截图来自我正在关注的教程,涉及在方法中声明类!

enter image description here

java math sqrt
6个回答
1
投票

您可以通过这种方式进行修改,并与您所使用的技术进行比较。

import static java.lang.Math.sqrt;
import static java.lang.Math.round;


public class Number {

    public int num = 0;

    public void prinTest() {

        System.out.println(this.num);
        System.out.println(this.getSqrt(this.num));
        System.out.println(this.getCheckTri());
    }

    private double getSqrt(double value) {
        return sqrt(value);
    }

    public boolean isSqr() {
        if (this.getSqrt(this.num) == round(this.getSqrt(this.num))) {
            return true;
        } else {
            return false;
        }
    }

    private double getCheckTri() {

        return 8 * this.num + 1;
    }

    public boolean isTriangular() {

        if (this.getSqrt(this.getCheckTri()) * this.getSqrt(this.getCheckTri()) == this.getCheckTri()) {
            return true;
        } else {
            return false;
        }
    }

    public static void main(String[] args) {

        Number number = new Number();

        number.num = 49;
        number.prinTest();
        System.out.println(number.isSqr());
        System.out.println(number.isTriangular());

    }
}

您应该阅读一些基本教程,因为您在main方法中添加了类,这意味着您需要更多时间来检查语法。


4
投票

这个:

public int num ;
double numSqr = sqrt(num );

在实例构造时将num初始化为0(在没有赋值的情况下为整数的默认值),然后立即设置numSqr(为零)。

每次你随后设置sqrt()时你需要重新计算num(也许通过提供方法setNum()并重新计算该方法中的所有内容)

我不打电话给你的班级Number,顺便说一句。标准Java类集中已经有一个Number类。


2
投票

numSqr是在构造函数中创建的,而number.num = 350;is是在构造对象后声明的。

你可以使用这样的构造函数:

public Numer(int num){
    this.num=num;
    this.numSqr=sqrt(num)
    //.... ... ...
}

您还可以使用空构造函数和setter来设置number属性:

public void setNumber(int num){
    this.num=num;
    this.numSqr=sqrt(num)
    //.... ... ...
}

2
投票

numSqrroundNumSqr等都是在对象创建时设置的,但是在创建对象之前,不要将num设置为任何值。结果是,例如,

在创作时:

num = 0

因此

numSqr = 0
roundNumSqr = 0

等等

然后,你设置num = 350但你没有重置numSqr等的值,所以仍然是这样:

numSqr = 0
roundNumSqr = 0

你需要为这个类生成一个构造函数,它接受num的值,然后设置所有相应的值,这样它们只能在设置num之后设置(或者,添加一个更新所有的“calculate”函数)值)。


0
投票

其他答案已经说过,字段num没有设置为输入数字,其他字段实际上是在对象创建时评估的,因此也是零。

然而,目的是通过简单的功能实现:

   public static boolean isSquare(int num) {
       int root = (int) Math.round(Math.sqrt(num));
       return root*root == num;
   }

   public static boolean isCubic(int num) {
       int root = (int) Math.round(Math.cbrt(num));
       return root*root*root == num;
   }

这利用了立方根。

作为双打的比较,sqrt结果及其舍入的长值仍然不精确,我更喜欢重新计算原始参数。


0
投票
public int num ;
double numSqr = sqrt(num);

默认情况下,声明的实例整数变量(在类体内声明的变量)初始化为0(零)。因此,你的代码什么也不做,只取零的平方根,即零。

© www.soinside.com 2019 - 2024. All rights reserved.