一、值传递和引用传递区别 package main import ( "fmt" ) func main() { // map m := make(map[int]string) m[0] = "a" m[1] = "b" changeMap(m) fmt.Printf("map:%+v", m) ...
分类:
其他好文 时间:
2021-06-13 10:27:46
阅读次数:
0
Rsync+Notify: yum install make gcc gcc-c++ 客户端启动rsync port:873/usr/local/rsync/bin/rsync --daemon --config=/usr/local/rsync/rsync.conf Client:tar xf r ...
分类:
其他好文 时间:
2021-06-13 09:26:06
阅读次数:
0
使用QT 的信号与槽函数的过程,编译完成后,在运行程序是出现如下信息: QObject::connect: Cannot queue arguments of type 'myReadBuf'(Make sure 'myReadBuf' is registered using qRegisterMe ...
分类:
其他好文 时间:
2021-06-11 18:06:00
阅读次数:
0
一、安装workman composer require workerman/workerman 二、创建 Timer 命令 php think make:command Timers 三、实现Timer <?php declare (strict_types = 1); namespace app ...
分类:
Web程序 时间:
2021-06-11 17:46:22
阅读次数:
0
第一步: 编译路径执行make menucinfig和make ota_menucinfig中分别选中: (1)Allwinner > swupdate (2)Allwinner > swupdate > Swupdate Settings > General Configuration > MTD ...
分类:
其他好文 时间:
2021-06-10 18:23:55
阅读次数:
0
yum -y install epel-release wget make gcc-c++ cd /opt wget https://download.redis.io/releases/redis-6.2.3.tar.gz tar -xf redis-6.2.3.tar.gz cd redis-6 ...
分类:
其他好文 时间:
2021-06-07 21:16:38
阅读次数:
0
环境:VS2015 Update3,g2o-20170730_git,suitesparse_metis_for_windows-1.4.0 suitesparse_metis_for_windows-1.4.0的CMake配置 g2o-20170730_git 的CMake配置 ...
分类:
其他好文 时间:
2021-06-07 20:41:59
阅读次数:
0
本次由于安全漏洞原因,需要降redis3升级为redis6,涉及到数据迁移及校验等,用阿里redis-shake迁移工具迁移,并用阿里RedisFullCheck工具进行数据比对 一、新redis安装启动 开启老版本redis的哨兵模式,编辑完sentinel.conf后执行哨兵模式启动,主节点均要 ...
分类:
其他好文 时间:
2021-06-07 20:24:55
阅读次数:
0
按钮点击有名内部类 private class MyonclickListener implements OnClickListener{ @Override public void onClick(View v) { //当控件被点击的时候就会调用这个onclick方法 //①获取用户的输入 St ...
分类:
其他好文 时间:
2021-06-02 19:10:08
阅读次数:
0
makefile定义了一系列的规则来指定,哪些文件需要先编译,哪些文件需要后编译,哪些文件需要重新编译,甚至于进行更复杂的功能操作,makefile就像一个Shell脚本一样,其中也可以执行操作系统的命令。 makefile的好处就是: —“自动化编译”,一旦写好,只需要一个make命令,整个工程完 ...
分类:
系统相关 时间:
2021-06-02 17:23:23
阅读次数:
0