摘要: 资料参考: https://www.guyuehome.com/805 阅读全文
posted @ 2021-07-20 10:29 倾越 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 资料参考: https://www.cnblogs.com/sjp520/p/5618708.html 阅读全文
posted @ 2021-07-08 17:07 倾越 阅读(60) 评论(0) 推荐(0) 编辑
摘要: c++ API网站cpluscplus提供了一个在线c++编译调试环境,可用于临时调试简短程序: http://cpp.sh/ 阅读全文
posted @ 2021-07-05 09:54 倾越 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 资料参考: http://blog.sina.com.cn/s/blog_6af956630101cdqq.html 阅读全文
posted @ 2021-07-02 12:12 倾越 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 执行以下指令: sudo find . -name '*' -exec touch {} \; 阅读全文
posted @ 2021-06-29 16:27 倾越 阅读(840) 评论(0) 推荐(0) 编辑
摘要: 状态机模式,是在构造高层系统时比较常用的一种设计模式。它的基本思想是,将同一系统的不同状态对象化,不同状态的对象分别处理系统在不同状态下业务问题。以最常用的播放机为例来说,就是将Play,Stop,Pause这些不同的状态,声明为class Play,class Stop,class Pause等, 阅读全文
posted @ 2021-06-11 14:07 倾越 阅读(2758) 评论(0) 推荐(0) 编辑
摘要: delete this或间接delete this时,在操作后,不应再调用本对象的成员,但类成员仍可调用。 资料参考: (1) 第一次见delete this的时候,没觉得这是一项会有什么特殊作用的技术,因此也就没有特别关注。 昨日在sourcemaking.com上看state模式之c++实现的时 阅读全文
posted @ 2021-06-11 10:21 倾越 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 资料参考: https://my.oschina.net/u/4521971/blog/4288960 阅读全文
posted @ 2021-05-21 10:35 倾越 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 资料参考: C++14: https://my.oschina.net/u/4521971/blog/4457984 C++17: https://my.oschina.net/u/4521971/blog/4462040 https://blog.csdn.net/qq811299838/arti 阅读全文
posted @ 2021-04-28 14:47 倾越 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 资料参考: https://zhuanlan.zhihu.com/p/87401211 阅读全文
posted @ 2021-04-28 10:49 倾越 阅读(272) 评论(0) 推荐(0) 编辑