03 2022 档案

摘要:vim /etc/yum.repos.d/CentOS-epel.repo failovermethod=priority 注释 :wq! 强制保存 阅读全文
posted @ 2022-03-28 13:55 只可远观呢 阅读(1617) 评论(0) 推荐(0)
摘要:# wget http://download.redis.io/releases/redis-6.0.8.tar.gz # tar xzf redis-6.0.8.tar.gz # cd redis-6.0.8 # make# cat redis.conf | grep -v "#" | grep 阅读全文
posted @ 2022-03-18 16:35 只可远观呢 阅读(31) 评论(0) 推荐(0)
摘要:1:赋值 String s1 = "123"; String s2 = "123"; System.out.println(s1 == s2); System.out.println(s1.equals(s2)); String字符串属于常量,常量需要进入内存中的字符串常量池(进入常量池规则:如果常 阅读全文
posted @ 2022-03-01 14:41 只可远观呢 阅读(62) 评论(0) 推荐(0)