01 2022 档案

摘要:31. Minimize complilation dependencies between files(handle class & interface class) 这部分需要记录下来, Handle classes #include <string> #include <memory> cla 阅读全文
posted @ 2022-01-13 11:27 strive-sun 阅读(33) 评论(0) 推荐(0)
摘要:1. auto_ptr 不建议使用的原因: auto_ptr 采用 copy 语义来转移指针资源,转移指针资源的所有权的同时将原指针置为 nullptr,这跟通常理解的 copy 行为是不一致的(不会修改原数据),而这样的行为在有些场合下不是我们希望看到的。 例如参考《Effective STL》第 阅读全文
posted @ 2022-01-05 19:47 strive-sun 阅读(62) 评论(0) 推荐(0)