如何判断 Java 整数是否为空?

2022-09-01 15:21:33

问候

我正在尝试验证我的整数是否为空。如果是,我需要提示用户输入一个值。我的背景是Perl,所以我的第一次尝试看起来像这样:

int startIn = Integer.parseInt (startField.getText());

if (startIn) { 
    JOptionPane.showMessageDialog(null,
         "You must enter a number between 0-16.","Input Error",
         JOptionPane.ERROR_MESSAGE);                
}

这不起作用,因为Java需要布尔逻辑。

在Perl中,我可以使用“exists”来检查哈希/数组元素是否包含以下数据:

@items = ("one", "two", "three");
#@items = ();

if (exists($items[0])) {
    print "Something in \@items.\n";
}
else {
    print "Nothing in \@items!\n";
}

在Java中有没有办法做到这一点?感谢您的帮助!

耶利米

附言 Perl 存在信息。


答案 1

parseInt()如果解析无法成功完成,则只会引发异常。你可以改用 相应的对象类型,这样事情就更干净了一点。所以你可能想要一些更接近的东西:Integers

Integer s = null;

try { 
  s = Integer.valueOf(startField.getText());
}
catch (NumberFormatException e) {
  // ...
}

if (s != null) { ... }

如果您决定使用,请当心! 不支持良好的国际化,因此您必须跳过更多的箍:parseInt()parseInt()

try {
    NumberFormat nf = NumberFormat.getIntegerInstance(locale);
    nf.setParseIntegerOnly(true);
    nf.setMaximumIntegerDigits(9); // Or whatever you'd like to max out at.

    // Start parsing from the beginning.
    ParsePosition p = new ParsePosition(0);

    int val = format.parse(str, p).intValue();
    if (p.getIndex() != str.length()) {
        // There's some stuff after all the digits are done being processed.
    }

    // Work with the processed value here.
} catch (java.text.ParseFormatException exc) {
    // Something blew up in the parsing.
}

答案 2

试试这个:

Integer startIn = null;

try {
  startIn = Integer.valueOf(startField.getText());
} catch (NumberFormatException e) {
  .
  .
  .
}

if (startIn == null) {
  // Prompt for value...
}