c++判断一个字符串是否是数字

bool isNum(const string& str)
{
    bool bRet = false;
    bool point = false;
    )
    {
        return bRet;
    }

    ]) && str[] != ] != '-' )
    {
        return bRet;
    }

    ] == ] == ] == '-'))
    {
        return bRet;
    }

    ; i < str.length(); i++ )
    {
        if (!isdigit(str[i]))
        {
            if (str[i] == '.' && !point)
            {
                point = true;
            } else
            {
                return bRet;
            }

        }
    }

    return true;
}
上一篇:Python 作用域, 局部与全局变量


下一篇:LInux多线程编程----线程属性pthread_attr_t