编程风格

来源:互联网 发布:怎样评价张作霖 知乎 编辑:程序博客网 时间:2024/06/10 08:34
public static final boolean isValidInteger(String intStr) {
        return (intStr == null) ? false : intStr.matches("//d+");
    }