编程风格

来源:互联网 发布:怎样评价张作霖 知乎 编辑:程序博客网 时间:2024/05/16 01:36
public static final boolean isValidInteger(String intStr) {
        return (intStr == null) ? false : intStr.matches("//d+");
    } 
原创粉丝点击