找到关于 Java 8 的4330 篇文章
439 次浏览
java.text.NumberFormat 类用于根据特定区域设置格式化数字和货币。不同国家/地区的数字格式不同。要将数字格式化为百分比,需要一个百分比 NumberFormat 实例。为此,请使用 getPercentageInstance() 方法。示例 在线演示import java.text.NumberFormat; import java.util.Locale; public class MainClass { public static void main(String[] args) { // 法国的货币是欧元 NumberFormat n = NumberFormat.getPercentInstance(Locale.FRANCE); // 分数 double points = 1.78; double totalPoints = points * 1000; System.out.println(n.format(points)); System.out.println(n.format(totalPoints)); } }输出178 % 178 000 %
3K+ 次浏览
NumberFormat 类的 getCurrencyInstance() 方法返回 NumberFormat 类的实例。java.text.NumberFormat 类用于根据特定区域设置格式化数字和货币。不同国家/地区的数字格式不同。这里,我们考虑了一个区域设置。NumberFormat n = NumberFormat.getCurrencyInstance(Locale.FRANCE);然后,我们用货币格式化了一个双精度值。double points = 1.78; System.out.println(n.format(points));以下是最终示例。示例 在线演示import java.text.NumberFormat; import java.util.Locale; public class MainClass { public static void main(String[] args) { // 法国的货币是欧元 NumberFormat n = NumberFormat.getCurrencyInstance(Locale.FRANCE); // 分数 double points = 1.78; double totalPoints = points * 1000; System.out.println(n.format(points)); ... 阅读更多
451 次浏览
在本文中,我们将学习如何使用 java.text 包中的 NumberFormat 类在 Java 中格式化数字。NumberFormat 类提供根据区域设置格式化数字的方法,这对于创建国际化的 Java 应用程序非常有用。使用 NumberFormat.getInstance() 方法,我们可以在 Java 程序中格式化 double、int 或 float 值。问题陈述给定一个十进制值,我们需要使用 Java 的 NumberFormat 类格式化该数字,以便根据默认区域设置对其进行舍入。输入 double val = 1.9898798; 输出格式化值:1.99 ... 阅读更多
219 次浏览
使用 Java 中的 Short.parseShort() 方法将字符串转换为短整型。假设我们的字符串如下所示。String str = “76”;现在,parseShort() 方法将字符串转换为短整型。byte val = Byte.parseByte(str);示例 在线演示public class Demo { public static void main(String[] args) { String str = "76"; short val = Short.parseShort(str); System.out.println(val); } }输出76
16K+ 次浏览
要向数字添加前导零,需要格式化输出。假设我们需要向以下三位数添加 4 个前导零。int val = 290;为了在上面添加 4 个前导零,我们将使用 %07d,即 4+3 = 7。这里,3(如上所示)是三位数。String.format("%07d", val);以下是最终示例。示例 在线演示import java.util.Formatter; public class Demo { public static void main(String args[]) { int val = 290; System.out.println("整数: "+val); String formattedStr = String.format("%07d", val); System.out.println("带有前导零 = " + formattedStr); } }输出整数: 290 带有前导零 = 0000290
2K+ 次浏览
您可以将精度说明符添加到以下格式说明符中:%f %e %g %s在浮点数上,小数位数是已知的。假设我们声明了一个 Formatter 对象:Formatter f1 = new Formatter();现在,我们想要 3 个小数位。为此,使用 1.3f:f1.format("%1.3f", 29292929.98765432);上述操作将返回带有 3 个小数位的数字:29292929.988以下是最终示例:示例 在线演示import java.util.Formatter; public class Demo { public static void main(String args[]) { Formatter f1, f2, f3; f1 = new Formatter(); f1.format("%1.3f", 29292929.98765432); System.out.println(f1); f2 = new Formatter(); f2.format("%1.7f", 29292929.98765432); System.out.println(f2); ... 阅读更多
377 次浏览
三元运算符也称为条件运算符。此运算符包含三个操作数,用于计算布尔表达式。假设我们有两个双精度值。double val1 = 20.0; double val2 = 3.7;现在,让我们使用三元运算符检查第一个值。System.out.println(val1 == 20 ? "正确!" : "不正确!");如果上述条件正确,即 val 等于 20,则将返回第一个语句“正确”。如果不等于,则将计算第二个语句。以下是最终示例。示例 在线演示import java.util.*; public class Demo { public static void main(String args[]) { double val1 = 20.0; ... 阅读更多
172 次浏览
要比较两个 Java 双精度数组,请使用 Arrays.equals() 方法。以下是我们的双精度数组。double[] arr1 = new double[] { 1.3, 7.2, 4.2 }; double[] arr2 = new double[] { 1.3, 7.2, 4.2 }; double[] arr3 = new double[] { 2.8, 5.3, 9.8 }; double[] arr4 = new double[] { 2.9, 5.8, 7.8 };现在,让我们比较上述数组。一次将比较其中的两个数组。Arrays.equals(arr1, arr2); Arrays.equals(arr1, arr3); Arrays.equals(arr1, arr4);以下是如何比较 Java 双精度数组的最终示例。示例 在线演示import java.util.*; public class Demo { public static void main(String args[]) { double[] arr1 = new double[] { 1.3, 7.2, 4.2 }; double[] arr2 = new double[] { 1.3, ... 阅读更多
83 次浏览
让我们首先声明一个 Double:Double ob = new Double(99.12);使用 toString() 方法将 Double 转换为 String。String res = ob.toString();以下是一个完整的示例。示例 在线演示public class Demo { public static void main(String args[]) { Double ob = new Double(99.12); String res = ob.toString(); System.out.println(res); } }输出99.12
232 次浏览
要在 Java 中将字符串转换为双精度型数字,请使用 Double.parseDouble() 方法。这是我们的字符串。String str = "699.7e130";现在让我们将上述字符串转换为双精度型。double val = Double.parseDouble(str);示例 在线演示public class Demo { public static void main(String args[]) { String str = "699.7e130"; double val = Double.parseDouble(str); System.out.println(val); } }输出6.997E132