Android:我怎样才能使用sin或cos而不是Math.sin或Math.cos

时间:2015-05-06 11:10:32

标签: java android math

我如何使用sin或cos而不是Math.sin或Math.cos?我试图导入Math。*但我认为我需要对命名空间做一些事情吗?。

2 个答案:

答案 0 :(得分:6)

import static java.lang.Math.*;

像这样导入。 此过程称为静态导入。

答案 1 :(得分:0)

请记住他们需要和弧度参数,所以使用Math.toRadians来转换它。

看看

http://developer.android.com/reference/java/lang/Math.html