2020年9月26日
摘要: 代码: console.log("start"); setTimeout(()=>{ console.log("children2"); Promise.resolve().then(()=>{ console.log("children3"); }); },0); new Promise(func 阅读全文
posted @ 2020-09-26 23:00 幻梦飞羽 阅读(377) 评论(0) 推荐(0) 编辑
  2020年4月25日
摘要: 前:转自[https://blog.csdn.net/weixin_43488965/article/details/89922467] 写的很好,转过来收藏 SQL Server判断语句(IF ELSE/CASE WHEN ) 执行顺序是 – 从上至下 – 从左至右 ,所当上一个条件满足时(无论下 阅读全文
posted @ 2020-04-25 12:04 幻梦飞羽 阅读(6378) 评论(6) 推荐(0) 编辑
摘要: 前:转自[https://www.cnblogs.com/SysoCjs/p/9842178.html] 文章很详细,就转过来收藏啦,以下是正文 这里关于SqlServer有两个知识点:一个是使用游标遍历表,另一个是使用if not exists的sql语句进行插入。 一、使用游标遍历表 这个表可以 阅读全文
posted @ 2020-04-25 11:58 幻梦飞羽 阅读(560) 评论(0) 推荐(0) 编辑
  2019年10月5日
摘要: 2019年10月4日记录 C public int[] TwoSum(int[] nums, int target) { Dictionary dic = new Dictionary(); for (int i = 0; i HashSet`拒绝接受重复的对象。 的一些特性如下: 1. 中的值不能 阅读全文
posted @ 2019-10-05 00:54 幻梦飞羽 阅读(468) 评论(0) 推荐(0) 编辑
  2019年5月2日
摘要: https://www.jsdelivr.com [Open Source CDN free, fast, and reliable](https://www.jsdelivr.com) 阅读全文
posted @ 2019-05-02 13:55 幻梦飞羽 阅读(111) 评论(0) 推荐(0) 编辑
  2019年3月31日
摘要: 非递归写法 static int FibonacciNumber(int n) { int a = 0; int b = 1; int tmp; for (int i = 0; i _cache = new Dictionary(); private int Fib(int n) = n Gener 阅读全文
posted @ 2019-03-31 17:17 幻梦飞羽 阅读(123) 评论(0) 推荐(0) 编辑
  2018年12月7日
摘要: 首先执行下面一条 再运行 查看是否有名为 teredo 的虚拟网卡 防火墙问题 执行 找到 ipv6=NO ,将其改为 IPV6=YES 更改miredo配置文件 执行 ,ServerAddress后面填入可以ping通的teredo服务器 teredo debian.remlab.net (法国) 阅读全文
posted @ 2018-12-07 15:52 幻梦飞羽 阅读(1106) 评论(0) 推荐(0) 编辑
摘要: 转至 https://www.cnblogs.com/xym4869/p/9003689.html#commentform,收藏自用 运行以下命令报错: 错误: 解决方法:安装很多基础包 阅读全文
posted @ 2018-12-07 11:16 幻梦飞羽 阅读(3158) 评论(0) 推荐(0) 编辑
  2017年3月9日
摘要: 本文转载收藏用,原文地址:http://www.cnblogs.com/majianchao/p/6523455.html 在软件开发中,游戏开发这个方向看起来目标很明确,但其实是个领域很广的方向,入门的时候如果得不到指点一二,很容易误入歧途,相反,如果走这条路之前能得到前人的一些指路,是可以事半功 阅读全文
posted @ 2017-03-09 09:54 幻梦飞羽 阅读(624) 评论(1) 推荐(0) 编辑
  2016年4月14日
摘要: 1.删除外键约束 2.删除所有存储过程 3.删除所有表 原文地址:http://www.cnblogs.com/huangjianwu/p/4536619.html 阅读全文
posted @ 2016-04-14 20:41 幻梦飞羽 阅读(468) 评论(0) 推荐(0) 编辑