摘要:
Day1 359.Logger Rate Limiter Design a logger system that receive stream of messages along with its timestamps, each message should be printed if and o 阅读全文
摘要:
主要涉及lecture4~lecture6, 系统调用的部分和多线程。 系统调用 多进程 shell实现 - execvp - pipe signal 1.系统调用 每个进程都有自己的内存空间。each process operates as if it owns all of main memor 阅读全文
摘要:
Item 18: Use std::unique_ptr for exclusive-ownership resource management. Item 19: Use std::shared_ptr for shared-ownership resource management. Item 阅读全文
摘要:
Item 13: 优先使用const_iterators而不是iterators 使用cbegin和cend(c++11)。 // in container, find first occurrence of targetVal, then insert insertVal there templa 阅读全文
摘要:
Item 7: 区分使用()和 三种常见的创建方式 int x(0); // initializer is in parentheses int y = 0; // initializer follows "=" int z{ 0 }; // initializer is in braces 但是初 阅读全文
摘要:
Klaus Iglberger, The SOLID Principles at Core C++ meetup 观后感。Klaus Iglberger每次的分享都能收获不少,所以这次拿好纸笔好好学习。 What SOLID stands for? Single-responsibility pri 阅读全文
摘要:
好多要学的,再偷懒就要失业了。2020加油吧。 计算机类 操作系统 CS110 编译原理 CS143 数据库原理 CS145 C++类 刷完CppCon back to basics modern effective c++ effective stl concurrency in action 对 阅读全文