发布时间:2013-05-10 20:02:57
该系列博文主要参考自 cppreference.com 和 cplusplus.com由于博主水平有限,内容仅供参考climits该头文件中定义了许多宏CHAR_BIT 一个byte的bit数MB_LEN_MAX一个多字节字符所占的最大字节数CHAR_MIN, S.........【阅读全文】
发布时间:2013-05-02 19:00:10
该系列博文主要参考自 cppreference.com 和 cplusplus.com该头文件下有三个class,分别是type_info, bad_cast 和 bad_typeid。type_info为操作符typeid的返回类型,bad_cast和bad_typeid均为exception类型。namespace std { class ty.........【阅读全文】
发布时间:2013-05-02 10:07:11
String conversion (字符串转换) atof atoi atol atoll(c++11) 函数原型: double atof(const char *str); (该函数较为特殊,atof却转为了double类型,其余均正常) 作用: 字符串转为double类型。 strtod strtof(c++11) strtol strtold(c++11.........【阅读全文】