2022年5月9日

JavaScript-map和set

摘要: Map var map = new Map([['tom',100],['jack',99],['ss',89]]); var name = map.get('tom'); map.delete('tom'); var map = new Map([['tom',100],['jack',99],[ 阅读全文

posted @ 2022-05-09 13:27 言语说 阅读(17) 评论(0) 推荐(0) 编辑

JavaScript-流程控制

摘要: if判断 var age = 3; if(age>3){ alert("haha"); } else { alert("wawa"); } while循环避免程序死循环 while(age<100){ age = age +1; console.log(age); } for循环 for (let 阅读全文

posted @ 2022-05-09 13:14 言语说 阅读(16) 评论(0) 推荐(0) 编辑

jdbc

摘要: public class JdbcPractice { @Test public void testInsert() throws SQLException, ClassNotFoundException { // 1. 注册驱动 Class.forName("com.mysql.jdbc.Driv 阅读全文

posted @ 2022-05-09 12:12 言语说 阅读(25) 评论(0) 推荐(0) 编辑

IDEA常用技巧

摘要: ###缩进与后移 1.代码整体向后缩进: 选中多行代码 - 按下tab键 2.代码整体向前缩进: 选中多行代码 - 按下shift + tab键 阅读全文

posted @ 2022-05-09 01:04 言语说 阅读(49) 评论(0) 推荐(0) 编辑

2022年5月8日

JavaScript基础知识

摘要: 比较运算符 == 等于(类型不一样 值一样 也会判断为true) 绝对等于(类型一样 值一样 结果为true) 坚持不要使用== ·nan nana 这个与所有的数值都不相等 包括自己 ·只能通过isNaN(NaN)来判断这个数是否是NaN console.log((1/3) (1-2/3)) 尽量 阅读全文

posted @ 2022-05-08 22:54 言语说 阅读(22) 评论(0) 推荐(0) 编辑

程序单词必备

摘要: ##组件:component ##按钮:button ##容器:container ##面板:panel ##element 元素 ##console 控制台 ##source 源码 ##application 应用 阅读全文

posted @ 2022-05-08 21:57 言语说 阅读(31) 评论(0) 推荐(0) 编辑

电脑常识

摘要: ###常用快捷键 Ctrl A全选 Alt F4关闭窗口 Ctrl shift esc打开任务管理器 win x. U关机 ###DOS命令 全选文件地址输入cmd进入所在文件地址下的命令行窗口 查看电脑ip:ipconfig 打开应用 calc计算器 mspaint画图工具 notepad记事本 阅读全文

posted @ 2022-05-08 17:13 言语说 阅读(20) 评论(0) 推荐(0) 编辑

导航