1. redis 6.2 系列 1.1 安装 进入官网,下载redis-6.2.4.tar.gz 将下载好的 redis 文件压缩包,上传到 linux 系统中 # 通过终端命令解压 [root@localhost local]# tar -zxvf redis-6.2.4.tar.gz # 重命令 ...
分类:
系统相关 时间:
2021-07-19 16:45:13
阅读次数:
0
#region 毫秒延时 界面不会卡死 public static void Delay(int mm) { DateTime current = DateTime.Now; while (current.AddMilliseconds(mm) > DateTime.Now) { Applicati ...
分类:
移动开发 时间:
2021-07-01 16:29:40
阅读次数:
0
将点云显示封装为函数,在主函数里调用 1 #pragma warning(disable:4996) 2 #include <pcl/registration/ia_ransac.h>//采样一致性 3 #include <pcl/point_types.h> 4 #include <pcl/poi ...
分类:
编程语言 时间:
2021-06-30 17:49:47
阅读次数:
0
茫茫人海千千万万,感谢这一秒你看到这里。希望我的面试题系列能对你的有所帮助!共勉! 愿你在未来的日子,保持热爱,奔赴山海! 每日三道面试题,成就更好自我 今天我们继续聊一点别的吧,今天我们聊下多线程 1. 你可以讲下进程与线程的区别?为什么要用多线程? 进程:进程是程序的一次执行过程,是系统运行程序 ...
分类:
编程语言 时间:
2021-06-29 15:27:26
阅读次数:
0
package main //程序的包名 /* import "fmt" import "time" */ import ( "fmt" "time" ) //main函数 func main() { //函数的{ 一定是 和函数名在同一行的,否则编译错误 //golang中的表达式,加";", 和 ...
分类:
其他好文 时间:
2021-06-28 20:07:48
阅读次数:
0
public void startC138() { new Thread(() -> { try { Thread.sleep(10000); String killredis = "/home/bjlthy/gym/code/killredis.sh"; Process ps = Runtime. ...
分类:
编程语言 时间:
2021-06-28 17:45:28
阅读次数:
0
package main import ( "fmt" "time" ) var jobs chan int var results chan int func work(id int, jobs <-chan int, results chan<- int) { for i := range jo ...
分类:
其他好文 时间:
2021-06-25 17:24:48
阅读次数:
0
Thread.sleep()是java的方法, 可能会抛出InterruptedException异常, 并且可能会被中断; SystemClock.sleep()是Android的方法,不会抛出异常, 并且无论如何都会让当前线程休眠指定的时间。 源码分析见 https://blog.csdn.ne ...
分类:
其他好文 时间:
2021-06-24 18:29:08
阅读次数:
0
import timeimport unittestdef my_sum(a, b): a += 1 b += 2 return a + b# 生成测试用例class TestSum(unittest.TestCase): def test_001(self): print(my_sum(1,2)) ...
分类:
其他好文 时间:
2021-06-24 17:47:34
阅读次数:
0
简述 作为一个考研狗,每天除了日复一日的复习外,偶尔也想给自己寻找一些生活的小乐趣,今天突然想到了自己曾经稍微接触的爬虫,想看看可以爬取些图片放到电脑上,就花了些时间改了改之前的爬虫代码,爬取了一部分照片先量一下战绩吧。照片不多但也算是自己的一次爬虫小经验。 实现思路 爬虫的网页很简单,照片真实路径 ...
分类:
编程语言 时间:
2021-06-22 18:22:03
阅读次数:
0