Java斷定字符串為空、字符串能否為數字。本站提示廣大學習愛好者:(Java斷定字符串為空、字符串能否為數字)文章只能為提供參考,不一定能成為您想要的結果。以下是Java斷定字符串為空、字符串能否為數字正文
關於 String 的判空:
//這是對的
if (selection != null && !selection.equals("")) {
whereClause += selection;
}
//這是錯的
if (!selection.equals("") && selection != null) {
whereClause += selection;
}
注:“==”比擬兩個變量自己的值,即兩個對象在內存中的首地址。而“equals()”比擬字符串中所包括的內容能否雷同。第二種寫法中,一旦 selection 真的為 null,則在履行 equals 辦法的時刻會直接報空指針異常招致不再持續履行。
斷定字符串能否為數字:
// 挪用java自帶的函數
public static boolean isNumeric(String number) {
for (int i = number.length(); --i >= 0;) {
if (!Character.isDigit(number.charAt(i))) {
return false;
}
}
return true;
}
// 應用正則表達式
public static boolean isNumeric(String number) {
Pattern pattern = Pattern.compile("[0-9]*");
return pattern.matcher(str).matches();
}
// 應用ASCII碼
public static boolean isNumeric(String number) {
for (int i = str.length(); --i >= 0;) {
int chr = str.charAt(i);
if (chr < 48 || chr > 57)
return false;
}
return true;
}