提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用Math.abs和Math.signnum方法强制一个变量的符号与另一个变量的符号匹配
//N o w J a v a . c o m public class Main { public static void main(String[] args) { int a = 27; int b = -32; float f = Math.abs(a) * Math.signum(b); // a is now -27; System.out.println(f); } }