• 不能转换空字符串!(需要捕获异常)

    try {
        boost::lexical_cast<int>("");
    } catch (boost::bad_lexical_cast &e) {
        ;
    }
    

留言

2015-07-23