To convert negative number to positive number (this is called absolute value), uses Math.abs(). This Math.abs() method is work like this “number = (number < 0 ? -number : number);".
Output:
See a complete example :
/**
* 测试负数转正数
*/
@Test
public void test2() {
// TODO Auto-generated method stub
int total = 1 + 1 + 1 + 1 + (-1);
// output 3
System.out.println("Total:" + total);
int total2 = 1 + 1 + 1 + 1 + Math.abs(-1);
// output 5
System.out.println("Total 2 (absolute value):" + total2);
}Output:
Total : 3
Total 2 (absolute value) : 5In this case, Math.abs(-1) will convert the negative number 1 to positive 1.
本文介绍如何利用Java中的Math.abs()方法将负数转换为正数(绝对值)。通过一个简单的示例展示了该方法的工作原理,即Math.abs()如何将-1转换为1,并给出具体代码实现。
342

被折叠的 条评论
为什么被折叠?



