C++中this指針的用法及引見。本站提示廣大學習愛好者:(C++中this指針的用法及引見)文章只能為提供參考,不一定能成為您想要的結果。以下是C++中this指針的用法及引見正文
本文實例總結了java斷定字符串能否為數字的辦法。分享給年夜家供年夜家參考,詳細以下:
辦法一:用JAVA自帶的函數
public static boolean isNumeric(String str){ for (int i = str.length();--i>=0;){ if (!Character.isDigit(str.charAt(i))){ return false; } } return true; }
辦法二:用正則表達式
public static boolean isNumeric(String str){ Pattern pattern = Pattern.compile("[0-9]*"); return pattern.matcher(str).matches(); }
辦法三:用ascii碼
public static boolean isNumeric(String str){ for(int i=str.length();--i>=0;){ int chr=str.charAt(i); if(chr<48 || chr>57) return false; } return true; }
願望本文所述對年夜家Java法式設計有所贊助。