上一页 1 2 3 4 5 6 7 8 9 10 ··· 24 下一页
摘要: ![image](https://img2022.cnblogs.com/blog/2426413/202211/2426413-20221125220905023-777550804.png) ![image](https://img2022.cnblogs.com/blog/2426413/202211/2426413-20221125221616553-807369184.png) ![im 阅读全文
posted @ 2022-11-25 22:36 NiceTwocu 阅读(27) 评论(0) 推荐(0)
摘要: 代码一 package com.itheima_06; public class App{ public static void main(String[] args) { PictureFrame pf=new PictureFrame(); } } 代码二 package com.itheima 阅读全文
posted @ 2022-11-24 22:58 NiceTwocu 阅读(45) 评论(0) 推荐(0)
摘要: drop table if exists emp; CREATE table emp( id INT PRIMARY KEY auto_increment , -- 员工id,自增长 ename VARCHAR(50) NOT NULL UNIQUE, -- 员工姓名,非空且唯一 joindate 阅读全文
posted @ 2022-11-22 22:53 NiceTwocu 阅读(27) 评论(0) 推荐(0)
摘要: 代码一 package com.itheima_05; public class App{ public static void main(String[] args) { PictureFrame pf=new PictureFrame(); } } 代码二 package com.itheima 阅读全文
posted @ 2022-11-22 22:09 NiceTwocu 阅读(53) 评论(0) 推荐(0)
摘要: 代码一 package com.itheima_02; public class App{ public static void main(String[] args) { PictureFrame pf=new PictureFrame(); } } 代码二 package com.itheima 阅读全文
posted @ 2022-11-22 21:50 NiceTwocu 阅读(233) 评论(0) 推荐(0)
摘要: 代码一 package com.itheima_02; public class App{ public static void main(String[] args) { PictureFrame pf=new PictureFrame(); } } 代码二 package com.itheima 阅读全文
posted @ 2022-11-22 21:37 NiceTwocu 阅读(84) 评论(0) 推荐(0)
摘要: 代码1 package com.itheima_02; public class App{ public static void main(String[] args) { PictureFrame pf=new PictureFrame(); } } 代码2 package com.itheima 阅读全文
posted @ 2022-11-21 22:59 NiceTwocu 阅读(56) 评论(0) 推荐(0)
摘要: --从0开始查询,查询3条数据; SELECT * from stu LIMIT 0,3; --每页显示3条数据,查询第1页的数据; SELECT * from stu LIMIT 0,3; --每页显示3条数据,查询第2页的数据; SELECT * from stu LIMIT 3,3; --每页 阅读全文
posted @ 2022-11-14 22:46 NiceTwocu 阅读(45) 评论(0) 推荐(0)
摘要: package com.itheima04; import javax.swing.*; public class UserLoginFrame extends JFrame { public UserLoginFrame() { //窗体初始化 initframe(); //绘制窗体 paintV 阅读全文
posted @ 2022-11-14 22:33 NiceTwocu 阅读(23) 评论(0) 推荐(0)
摘要: package com.itheima03; /* 手机javabean alt+insert(fn)根据自己的选择生成想要的内容 */ public class Phone { private String brand; private int price; public Phone() { } 阅读全文
posted @ 2022-11-13 16:51 NiceTwocu 阅读(67) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 24 下一页