Java Number & Math 类
开发过程中我们会遇到适用对象,而不是内置数据类型的情形。为了解决这问题,Java语言为每个内置数据类型提供了对应的包装类。
Integer、 Long、Byte、Double、Float、Short都是抽象类Number的子类。
- Java Math
- Number & Math 方法
由编译器特别支持的包装成为装箱,所以当内置数据类型被当作对象使用的时候,编译器会吧内置类型装箱为包装类,编译器也可以把一个对象拆箱为内置对象。Number类数据java.lang包。
示例
public class Test{
public static void main(String args[]){
Integer x = 5;
x = x + 10;
System.out.println(x);
}
}
Java Math
包含了用于执行基本数学运算的属性和方法,如初等指数,对数,平方根和三角函数。
Math方法都被定义为static形式通过math类可以在主函数中直接调用。
public class Test {
public static void main (String []args)
{
System.out.println("90 度的正弦值:" + Math.sin(Math.PI/2));
System.out.println("0度的余弦值:" + Math.cos(0));
System.out.println("60度的正切值:" + Math.tan(Math.PI/3));
System.out.println("1的反正切值: " + Math.atan(1));
System.out.println("π/2的角度值:" + Math.toDegrees(Math.PI/2));
System.out.println(Math.PI);
}
}
Number & Math 方法
编号 | 方法和描述 |
---|---|
1 | xxxValue() 将Number对象转换为XXX数据类型的值并返回 |
2 | compareTo() 将number对象与参数进行比较 |
3 | equals() 判断number |
4 | valueOf() 返回一个Number对象指定的内置数据类型 |
5 | toString() 以字符串形式返回值 |
6 | parseInt() 将字符串解析为int类型 |
7 | abs() 返回参数的绝对值 |
8 | ceil() 返回大于等于(>=)给定参数的最小整数,类型为双精度浮点型 |
9 | floor() 返回小于等于(<=)给定参数的最大整数 |
10 | rint() 返回与参数最接近的整数。返回类型为double |
11 | round() 四舍五入,Math.floor(x+0.5),原数字加0.5后向下取整 |
12 | min() 返回两个参数中的最小值 |
13 | max() 返回两个参数中的最大值 |
14 | exp() 返回自然数底数e的参数次方 |
15 | log() 返回参数的自然数底数的对数值 |
16 | pow() 返回第一个参数的第二个参数次方 |
17 | sqrt() 求参数的算术平方根 |
18 | sin() 求指定double类型参数的正弦值 |
19 | cos() 求指定double类型参数的余弦值 |
20 | tan() 求指定double类型参数的正切值 |
21 | asin() 求指定double类型参数的反正弦值 |
22 | acos() 求指定double类型参数的反余弦值 |
23 | atn() 求指定double类型参数的反正切值 |
24 | atn2() 将笛卡尔坐标转换为极坐标,并返回极坐标的角度值 |
25 | toDergrees() 将参数转换为角度 |
26 | toRadians() 将角度转化为弧度 |
27 | random() 返回一个随机数 |
示例:floor,round和ceil
public class Main {
public static void main(String[] args) {
double[] nums = { 1.4, 1.5, 1.6, -1.4, -1.5, -1.6 };
for (double num : nums) {
test(num);
}
}
private static void test(double num) {
System.out.println("Math.floor(" + num + ")=" + Math.floor(num));
System.out.println("Math.round(" + num + ")=" + Math.round(num));
System.out.println("Math.ceil(" + num + ")=" + Math.ceil(num));
}
}