摘要:
// // Created by admin on 2021/10/21. // List 双向链表实现 // #ifndef HELLOWORLD_LIST_H #define HELLOWORLD_LIST_H // List类 template<typename Object> class L 阅读全文
摘要:
问题描述: 我们在使用Handle的时候,会要求我们重写抽象方法handleMessage,其中默认返回值为false,那么返回值什么用? 问题解决: 在源码中有这样一句话 True if no further handling is desired 意思是如果我们不想该消息被继续处理,则返回tru 阅读全文