c++最好用易用的新特性:
- auto/decltype https://blog.csdn.net/zyc2018/article/details/93591189
- nullptr
- range-for
- using
c++有哪些坑?
内存泄漏的解决方案:
- 智能指针
- 内存池
学习优秀的c++源码
- Nginx
- Leveldb
- Envoy
- Folly
- Boost
vector<int> month;
int cnt=1;
month.push_back(3);
for(int i=3;i<=monthCount;i++)
{
for(auto &e:month)
{
e+