关注产品的专职码农,文章主要关于 产品、技术和创业。<br><br>微信公众号:闭眼卖布<br>希望文章对你能有帮助。<br><br><a href="https://links.jianshu.com/go?to=http%3A%2F%2Fblog.zhuangweiming.me" target="_blank">http://blog.zhuangweiming.me</a><br>
IP属地:上海
一. 声明及使用 1. 不包含数据 2. 包含数据 3. lambda since C++11 二. 应用方法 以for_each为例 函数指针 函数对象 lambda 以...
Variable Zero value concept Every single value we create must be initialized. If we don...
并发原语 Mutex RWMutex WaitGroup Cond Channel Contex 场景 共享资源。并发地读写共享资源,会出现数据竞争的问题,——Mutex/R...
1、自动垃圾回收2、更丰富的内置类型 // 数组切片,map3、函数多返回值4、错误处理 // defer panic recover5、匿名函数和闭包6、类...
风格 1、public的变量必须以大写字母开头,private变量则以小写字母开头2、{}使用格式正确方式: 错误方式: 3、 defer 关键字和多返回值 4、没有继承,虚...
https://en.cppreference.com/w/cpp/utility/initializer_list[https://en.cppreference.com/...
1、ostream // message.h // message.cpp 2、ostringstream
重构的目标:Pass All Test: 通过全部测试;No Duplication: 没有重复(DRY)Reveals Intent: 程序表达意图,易于理解Has no ...