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) 编辑

导航