摘要: 阅读全文
posted @ 2019-01-20 21:26 Morning_Glory 阅读(741) 评论(0) 推荐(1) 编辑
摘要: 也许更好的阅读体验 协程简单理解为可以暂停的线程,但是同一时刻只有一个协程可以处于运行状态。 coroutine.create() lua中使用coroutine.create()创建一个协程,参数是一个函数,返回值为创建的协程,这个协程运行内容就是这个函数了。 协程有三种状态挂起、运行、停止。 协 阅读全文
posted @ 2024-07-12 15:53 Morning_Glory 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 也许更好的阅读体验 成果展示 代码 OctreeNode using System.Collections; using System.Collections.Generic; using UnityEngine; public class OctreeNode { //空间内包含的物体 publi 阅读全文
posted @ 2024-06-19 14:13 Morning_Glory 阅读(12) 评论(0) 推荐(0) 编辑
摘要: using System.Collections; using System.Collections.Generic; using Unity.Collections.LowLevel.Unsafe; using UnityEngine; using UnityEngine.UI; public c 阅读全文
posted @ 2024-06-18 15:20 Morning_Glory 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 也许更好的阅读体验 技术栈说明 spring cloud + eureka + feign + ribbon + hystrix + gateway + config + bus 反序列化失败: Type definition error: [simple type, class com.elm.p 阅读全文
posted @ 2024-03-20 16:20 Morning_Glory 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 也许更好的阅读体验 Type definition error: [simple type, class com.elm.po.CommonResult]; nested exception is com.fasterxml.jackson.databind.exc.InvalidDefinitio 阅读全文
posted @ 2024-03-07 11:57 Morning_Glory 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 也许更好的阅读体验 \(\mathcal{Description}\) 给\(n\)对区间,要求每对区间恰好选一个使得选出来的\(n\)个区间有交集,问有多少方案数 \(1\le n, l_i,r_i\le 5×10^5\) \(\mathcal{Solution}\) 注意到区间的值域也是\(5× 阅读全文
posted @ 2023-08-14 18:50 Morning_Glory 阅读(270) 评论(0) 推荐(1) 编辑
摘要: [也许更好的阅读体验](https://blog.csdn.net/Morning_Glory_JR/article/details/132194133?csdn_share_tail=%7B%22type%22%3A%22blog%22%2C%22rType%22%3A%22article%22% 阅读全文
posted @ 2023-08-09 18:16 Morning_Glory 阅读(22) 评论(0) 推荐(1) 编辑
摘要: [也许更好的阅读体验](https://blog.csdn.net/Morning_Glory_JR/article/details/132188251?csdn_share_tail=%7B%22type%22%3A%22blog%22%2C%22rType%22%3A%22article%22% 阅读全文
posted @ 2023-08-09 15:27 Morning_Glory 阅读(31) 评论(0) 推荐(0) 编辑
摘要: [也许更好的阅读体验](https://blog.csdn.net/Morning_Glory_JR/article/details/132123369?csdn_share_tail=%7B%22type%22%3A%22blog%22%2C%22rType%22%3A%22article%22% 阅读全文
posted @ 2023-08-05 19:04 Morning_Glory 阅读(167) 评论(0) 推荐(0) 编辑
摘要: [也许更好的阅读体验](https://blog.csdn.net/Morning_Glory_JR/article/details/132123173?csdn_share_tail=%7B%22type%22%3A%22blog%22%2C%22rType%22%3A%22article%22% 阅读全文
posted @ 2023-08-05 18:46 Morning_Glory 阅读(130) 评论(0) 推荐(0) 编辑
//