gpt4 book ai didi

java - 如何检查 Java 中 Long range 之外存在的范围?

转载 作者:搜寻专家 更新时间:2023-10-31 19:27:31 24 4
gpt4 key购买 nike

所以我想检查超出Java中Long数据类型范围的数字。我写了一些代码,但没有超出 Long 的范围。如果我给出的数字超过了 Long 的范围,并且应该打印出它超出了 Long 范围之类的东西,该怎么办。这是我的代码:

import java.math.BigInteger;
import java.util.Scanner;

public class Solution {

public void check(String data) {
System.out.println(data + " can be fitted in:");
Long bInt = Long.parseLong(data);
if (bInt >= Byte.MIN_VALUE && bInt <= Byte.MAX_VALUE) {
System.out.println("* byte");
}
if (bInt >= Short.MIN_VALUE && bInt <= Short.MAX_VALUE) {
System.out.println("* short ");
}
if (bInt >= Integer.MIN_VALUE && bInt <= Integer.MAX_VALUE) {
System.out.println("* int ");
}
if (bInt >= Long.MIN_VALUE && bInt <= Long.MAX_VALUE) {
System.out.println("* long ");
}
}

public static void main(String args[]) {
Solution solution = new Solution();
Scanner sc = new Scanner(System.in);
int data = Integer.parseInt(sc.nextLine());
String[] array = new String[data];

Scanner sc1 = new Scanner(System.in);

for (int i = 0; i < data; i++) {
array[i] = sc1.nextLine();
}

for (int j = 0; j < array.length; j++) {
solution.check(array[j]);
}
}
}

Eran 的帮助下,我稍微更改了代码并且它可以工作。

更新代码:

import java.math.BigInteger;
import java.util.Scanner;

/**
*
* @author pez
*/
public class Solution {

public void check(String data) {
try {
Long bInt = Long.parseLong(data);
System.out.println(data + " can be fitted in:");
if (bInt >= Byte.MIN_VALUE && bInt <= Byte.MAX_VALUE) {
System.out.println("* byte");
}
if (bInt >= Short.MIN_VALUE && bInt <= Short.MAX_VALUE) {
System.out.println("* short ");
}
if (bInt >= Integer.MIN_VALUE && bInt <= Integer.MAX_VALUE) {
System.out.println("* int ");
}
if (bInt >= Long.MIN_VALUE && bInt <= Long.MAX_VALUE) {
System.out.println("* long ");
}
} catch (NumberFormatException e) {
System.out.println(data + " can't be fitted anywhere beyond long ");
}
}

public static void main(String args[]) {
Solution solution = new Solution();
Scanner sc = new Scanner(System.in);
int data = Integer.parseInt(sc.nextLine());
String[] array = new String[data];

Scanner sc1 = new Scanner(System.in);

for (int i = 0; i < data; i++) {
array[i] = sc1.nextLine();
}

for (int j = 0; j < array.length; j++) {
solution.check(array[j]);
}
}
}

最佳答案

Long.parseLong 抛出一个 NumberFormatException 如果你传递给它一个不能被解析为 long 的数字。您可以捕获该异常并尝试将其解析为 BigInteger。如果你成功了,你就会知道输入的是一个有效的数字,只是不适合那么长。

例如:

    try {
System.out.println("Valid Long: " + Long.parseLong("1234567890123456789012345"));
} catch (NumberFormatException n) {
System.out.println("Valid Big Integer: " + new BigInteger ("1234567890123456789012345").toString());
}

这会打印:

Valid Big Integer: 1234567890123456789012345

这意味着 1234567890123456789012345 不是有效的 long。

如果 BigInteger 构造函数也抛出 NumberFormatException,您知道输入不能被解析为有效数字(例如,如果已解析的 String 包含非数字字符)。

关于java - 如何检查 Java 中 Long range 之外存在的范围?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30701852/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com