Spring Boot has taken Spring framework to the next level. It has drastically reduced the configuration and setup time required for spring projects. Sp ...
分类:
数据库 时间:
2020-07-01 18:40:39
阅读次数:
64
1.set(WeakSet 只接收对象) 个人理解:set数据结构我认为最主要的用途就是去重了,它接收一个数组,它的增/删/查 分别是:add/delete/has 它有一个size属性,类似数组的length,可以通过Array.from()转换为数组 2.Symbol 个人理解:Symbol前端 ...
分类:
其他好文 时间:
2020-07-01 17:34:53
阅读次数:
72
以 %%writefile request.py 开头。 下面写 python 代码,然后 shift + enter 键,可以把 python 代码写入开头指定的文件中,没有则自动创建。 以 %run request.py 的形式运行当前目录下的 python 文件。 也可以指定绝对路径。 Lin ...
分类:
编程语言 时间:
2020-07-01 14:25:59
阅读次数:
75
环境centos7thinkphp 5.0think-worker 1.0.1Workerman version:3.5.30PHP version:5.6.9 thinkphp 5.0使用workerman,启动workerman服务端报错 pcntl_signal() has been disa ...
分类:
Web程序 时间:
2020-07-01 12:26:37
阅读次数:
251
Redis有哪些数据结构? 字符串String、字典Hash、列表List、集合Set、有序集合SortedSet。 如果你是Redis中高级用户,还需要加上下面几种数据结构HyperLogLog、Geo、Pub/Sub。 如果你说还玩过Redis Module,像BloomFilter,Redis ...
分类:
其他好文 时间:
2020-07-01 09:55:59
阅读次数:
56
1.I have not been strong, to be able to fight against all the mistakes I have made. 我还没有刚强到,可以本身来抗全部犯下的错。 2.People who don't love you, you are gentle ...
分类:
其他好文 时间:
2020-07-01 09:39:08
阅读次数:
254
for - 多次遍历代码块 for/in - 遍历对象属性 while - 当指定条件为 true 时循环一段代码块 do/while - 当指定条件为 true 时循环一段代码块 ...
分类:
其他好文 时间:
2020-07-01 00:13:34
阅读次数:
44
We can do anything we want to do if we stick to it long enough.只要锲而不舍,我们便能做自己想做的任何事情。 大学物理 —— 磁场中的磁介质 花了几天搞了些事情,祝我一切顺利。 目录 1. 磁介质对磁场的影响2. 原子的磁矩3. 磁介质的 ...
分类:
其他好文 时间:
2020-06-30 22:45:44
阅读次数:
90
一、技术总结 这一题主要学到了,进制转换如下: int len = 0; do{ d[len++] = n % radix;//转化成该进制,数组低位表示转换后进制的低位; n /= radix; }while(n != 0); int p = 1; for(int i = len - 1; i > ...
分类:
其他好文 时间:
2020-06-30 22:39:20
阅读次数:
56
#!/bin/bash ms=`date +%-H%M` if ((10#$1 <= 10#$ms));then echo "future time,please" exit 0 fi while ((10#$1 != 10#$ms)) do ms=`date +%H%M` if ((10#$1-1 ...
分类:
其他好文 时间:
2020-06-30 20:56:18
阅读次数:
74