摘要: 重要说明:粗体字符串(如insert into),是固定的字符串。其它的类名和方法名则是根据类名和属性名的不同而不同。1、根据Student类(属性:sfz,name,age,gender)的定义,输出以下内容: insert字符串1: insert into student(sfz,name,ag 阅读全文
posted @ 2022-06-21 19:48 xiaoyongdata 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 重要说明:项目没有跟上的同学,则练习: 1、新建一个注册服务接口 public interface IUserReg { boolean register(UserPo user) throws IOException;} 2、用print语句,分别写IUserReg接口的两个实现类 3、编写配置文 阅读全文
posted @ 2022-06-21 19:47 xiaoyongdata 阅读(58) 评论(3) 推荐(0) 编辑
摘要: 练习 一: 传统方式-生成一个文件,然后在文件中保存一段话如,你好java。 import java.io.File;.... File file = new File("d:/demo/f1.txt"); file.createNewFile();.... 任务:将上面的代码用反射来执行。 要点: 阅读全文
posted @ 2022-06-21 19:42 xiaoyongdata 阅读(65) 评论(3) 推荐(0) 编辑