摘要: 1、firewalld的基本使用 启动: systemctl start firewalld 查看状态: systemctl status firewalld 停止: systemctl disable firewalld 禁用: systemctl stop firewalld 2.systemc 阅读全文
posted @ 2023-06-28 10:35 路暝月 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 1、作用域只局限于当前代码块 if(true){ var str = 1 let str1 = 2 console.log(str) console.log(str1) } console.log(str) console.log(str1)// str1 is not defined 2、let声 阅读全文
posted @ 2023-06-28 10:01 路暝月 阅读(23) 评论(0) 推荐(0) 编辑
摘要: set是不重复的集合,可以使用set对有重复的几ist集合进行合并 List<PageData> listnew = new ArrayList<PageData>(); List<PageData> varList = new ArrayList<PageData>(); //获取页面输入的关键字 阅读全文
posted @ 2023-06-28 08:56 路暝月 阅读(25) 评论(0) 推荐(0) 编辑