我怎么看java中的math.cos方法如何计算平方根?

时间:2013-09-25 12:00:15

标签: java math

我不是天才的数学科学家

但是我试图看看sqrt,cos,sin,...函数如何进行计算

我打开了文件strictMath.java 在'C:\ Program Files \ Java \ jdk1.7.0_17 \ src.zip'中

这就是我发现的:

public static native double sin(double a);

public static native double cos(double a);

public static native double sqrt(double a);

我没有看到每个函数用来计算的代码

所以任何人都可以告诉我这些功能是如何运作的?

1 个答案:

答案 0 :(得分:0)

您可以在这篇文章中找到解决方案:Where can I find the source code for Java's Square Root function?

在这些情况下,我建议您直接查看API:http://docs.oracle.com/javase/7/docs/api/java/lang/StrictMath.html