Study notes
现代化的 API 设计指南 现代化的 API 设计指南
如何写出易于维护的代码,阻止犯错? 类型就是最好的注释! Type is all you need 结构体传参123void foo(string name, int age, int phone, int address);foo(&qu
2024-09-19
为什么要函数式编程? 为什么要函数式编程?
为什么需要函数?123456789int main() { std::vector<int> a = {1, 2, 3, 4}; int s = 0; for (int i = 0
2024-09-19