摘要: 介绍 封装的消息机制 使用 注册消息 Reg(MessageType messageType, MessageDelHandle handle); messageType : 注册消息类型 handle :消息传入时回调方法(该方法需拥有参数Message) 注销消息 UnReg(MessageTy 阅读全文
posted @ 2024-02-17 11:15 星空探险家 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 内容 代码 public class Singleton<T> where T : new() { private static T _instance; public static T Instance { get { if (_instance == null) { _instance = ne 阅读全文
posted @ 2024-02-17 10:41 星空探险家 阅读(53) 评论(0) 推荐(0) 编辑