摘要: #include #include #include #include #include #include #include #include #include //包装头文件 using namespace std; #if 0 //在C语言中 int main() { const int num = 100; //int a[num];//错误,num其实是... 阅读全文
posted @ 2019-08-04 20:20 白伟碧一些小心得 阅读(567) 评论(0) 推荐(0) 编辑
摘要: 具体可看:https://www.cnblogs.com/wangkeqin/p/9338358.html 模板元加速 阅读全文
posted @ 2019-08-04 19:30 白伟碧一些小心得 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 例2: 阅读全文
posted @ 2019-08-04 18:11 白伟碧一些小心得 阅读(462) 评论(0) 推荐(0) 编辑
摘要: char(112312312);//不会检查是否超过范围,会截断 char{12345435345};//会报异常,异常如下: error C2397: 从“__int64”转换到“char”需要收缩转换 warning C4305: “初始化”: 从“__int64”到“char”截断warnin 阅读全文
posted @ 2019-08-04 16:13 白伟碧一些小心得 阅读(1594) 评论(0) 推荐(0) 编辑
摘要: C++ auto 关键字的使用 C++98 auto 早在C++98标准中就存在了auto关键字,那时的auto用于声明变量为自动变量,自动变量意为拥有自动的生命期,这是多余的,因为就算不使用auto声明,变量依旧拥有自动的生命期: int a =10 ; //拥有自动生命期 auto int b 阅读全文
posted @ 2019-08-04 12:22 白伟碧一些小心得 阅读(272) 评论(0) 推荐(0) 编辑