摘要: 与运算 |计算|结果| |:--:|:--:| |0&0|0| |0&1|0| |1&1|1| |1&0|0| 或运算 |计算|结果| |:--:|:--:| |0|0|0| |0|1|1| |1|1|1| |1|0|1| 阅读全文
posted @ 2022-09-14 12:19 Himmelbleu 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 《C Primer Plus》函数章节:递归函数。结合 Visual Studio 调试理解 C 语言的递归函数,下面是书上一模一样的代码,贴在这里: #include<stdio.h> void up_and_down(int); int main(void) { up_and_down(1); 阅读全文
posted @ 2022-09-13 00:37 Himmelbleu 阅读(66) 评论(0) 推荐(0) 编辑
摘要: GCC 的编译流程 我们写的 C 代码保存在扩展名是 .c 的文件,其实是一个纯文本文件。 GCC(C 编译器之一)通过预处理器(Pre-Processing)把头文件展开到hello.i文件中。 编译器(Compiling)把hello.i文件转换成包含汇编代码的文件hello.s中。 汇编器(A 阅读全文
posted @ 2022-09-12 21:56 Himmelbleu 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 字节(Byte)是计算机中存储数据的基本单位,每 8 个比特(bit)组成一个字节(Byte)。 根据国际单位制标准,1KB = 1000 Byte。 根据按照IEC命名标准,1KiB = 1024 Byte。 所以,1 KB = 1024Byte 还是 1 KB = 1000Byte 要根据实际情 阅读全文
posted @ 2022-09-11 16:18 Himmelbleu 阅读(219) 评论(0) 推荐(0) 编辑
摘要: bps 是速率单位,表示比特每秒(bit per second),单位也可以是 bit/s。 1K = 103 bit/s 1M = 106 bit/s。 Mbps 中的 b 是一个小写字母,指的是比特 bit。 MBps 中的 B 是一个大写字母,指的是字节 Byte。 MBps 和 Mbps 是 阅读全文
posted @ 2022-09-11 16:14 Himmelbleu 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 认识 Infinity 在 JavaScript 中超出 1.797693134862315E+308 的数值即为 Infinity,小于 -1.797693134862316E+308 的数值为无穷小。 2^n,其中 n 的取值范围是:(-1075, 1024)。如果 n 大于等于 1024,则指 阅读全文
posted @ 2022-09-05 01:18 Himmelbleu 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 简单运用 逻辑且(&&):左右必须都满足 true 才返回 true; 逻辑或(||):左右其中一个满足 true 就返回 true。 let user = localStorage.getItem("user"); if (user && user.age > 10) { // ... } if 阅读全文
posted @ 2022-09-04 22:42 Himmelbleu 阅读(327) 评论(0) 推荐(0) 编辑
摘要: node_modules 文件夹很大,不推荐右键通过回收站删除,通过 rimraf 来删除速度很快: # 安装 rimraf pnpm i -g rimraf # 删除 node_modules rimraf node_modules # 清除 npm 缓存 npm cache clear --fo 阅读全文
posted @ 2022-09-01 17:15 Himmelbleu 阅读(186) 评论(0) 推荐(1) 编辑
摘要: 计算属性和普通函数 普通函数 普通的函数也能替代计算属性做的事情,普通函数每在模板里面使用一次就计算一次代码,这可能加大开销,降低性能,它不缓存。 file:[Demo.vue - template] <div v-html="formatJson(jsonData)"></div> <div v- 阅读全文
posted @ 2022-08-25 01:36 Himmelbleu 阅读(491) 评论(0) 推荐(3) 编辑
摘要: 下图是详细的报错截图,我敢保证前端传递的数据一个不漏,但还是报我没有绑定对应的字段: 官方文档的使用案例基本上都是where 子句在 update 语句之前。但,select 语句的 where 子句既可以放在后面,也可以放在前面。 🙃错误的使用案例: knex("users").update(r 阅读全文
posted @ 2022-08-21 00:42 Himmelbleu 阅读(107) 评论(0) 推荐(1) 编辑