gpt4 book ai didi

java - java构造函数中的简单错误

转载 作者:行者123 更新时间:2023-11-29 09:45:25 25 4
gpt4 key购买 nike

我无法理解我在这段代码中的错误,如果我写 new Cosine(); 它会编译但是如果我写 new Cosine(x);

import java.lang.Object;
import java.lang.Math;

class Cosine {
double Cosine (double x) {
double result = Math.cos(Math.toRadians(x));
return result;
}
}

public class test {
public static void main (String[] args){
double x = 90;
new Cosine(x);
}
}

最佳答案

您还没有为 Cosine 提供一个采用 double 的构造函数。试试这个:

class Cosine {

public final double result; //field holding the result

//constructor
public Cosine (double x){
result = Math.cos(Math.toRadians(x)); //compute the result
}
}

public class test {
public static void main (String[] args){
double x = 90;
double cosX = new Cosine(x).result;
}
}

尽管这提出了为什么不能使用简单的静态方法的问题:

public static double getCosine(double x) {
return Math.cos(Math.toRadians(x));
}

public class test {
public static void main (String[] args){
double x = 90;
double cosX = getCosine(x);
}
}

这不需要为每次计算都实例化 Cosine 对象。

关于java - java构造函数中的简单错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7838718/

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