摘要:
按位与运算符(&) 参加运算的两个数据,按二进制位进行“与”运算。 运算规则:0&0=0; 0&1=0; 1&0=0; 1&1=1; 即:两位同时为“1”,结果才为“1”,否则为0 例如:3&5 即 0000 0011& 0000 0101 = 00000001 因此,3&5的值得1。 另,负数按补 阅读全文
摘要:
1. 页面CSS代码区中CSS代码 #sideCatalog a{ font-size:12px; font-weight:normal !important; } 2. 侧边栏公告区中js代码 <script type="text/javascript"> //以下是锚点JS,自动生成目录 var 阅读全文
摘要:
sudo apt-get install lsof //安装lsof sudo lsof -i:端口号 //查找对应的进程号 sudo kill -9 进程号 //杀死对应的进程 阅读全文
摘要:
1、想要配置Eclipse的环境,就要先下载Eclipse,并安装它,不会下载安装的小伙伴可以点击下面给的链接,里面有我写的详细的教程,这里就不重复了 Eclipse下载与安装:https://blog.csdn.net/qq_39135287/article/details/82108080 2、 阅读全文
摘要:
<!DOCTYPE html> <head> <meta charset="UTF-8"> <link rel="shortcut icon" href="https://images.cnblogs.com/cnblogs_com/Rui6/1845398/o_200911002702%E8%93 阅读全文
摘要:
// 按钮提示框 // <input type="button" name="btn2" id="btn2" value="删除" onclick="return confirm('Yes/No');); // 按钮提示框 // <input type="button" name="btn2" id 阅读全文
摘要:
1.下载解压 1.1 MySql 5.7.26下载地址: https://dev.mysql.com/downloads/mysql/5.7.html#downloads 1.2 解压 tar -xvf mysql-5.7.26-linux-glibc2.12-x86_64.tar 再移动并重命名一 阅读全文
摘要:
1.查看防火墙状态 firewall-cmd --state 2.启动防火墙 systemctl start firewalld 3.关闭防火墙 systemctl stop firewalld 4.检查防火墙开放的端口 firewall-cmd --permanent --zone=public 阅读全文
摘要:
集群模式设置为no 就可以开启服务 cluster-enable no 阅读全文
摘要:
这里以linux服务器为例,为redis配置密码。 1.第一种方式 (当前这种linux配置redis密码的方法是一种临时的,如果redis重启之后密码就会失效,) (1)首先进入redis,如果没有开启redis则需要先开启: [root@iZ94jzcra1hZ bin]# redis-cli 阅读全文