摘要: 1.两个框架 mobile legends { 微服务架构:各系统耦合性低,rpc AccountServer DirServer LoginServer c(账号认证,角色信息,区服信息) | | ConnServer ConnServer ConnServer c GameServer Game 阅读全文
posted @ 2020-10-18 23:21 zzyoucan 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-10-18 18:58 zzyoucan 阅读(99) 评论(0) 推荐(0) 编辑
摘要: static_cast:明确隐式转换 dynamic_cast:父子类转换,运行时类型识别RTTI,有额外的开销,一般在向下转换时才使用,必须要有虚函数 reinterpret_cast:显示强转,后果自负 int main() { int n = 5; float f = 10.0f; f = n 阅读全文
posted @ 2020-10-18 15:42 zzyoucan 阅读(569) 评论(0) 推荐(0) 编辑