摘要: Insert title here 用户名: 密码: Insert title here Insert title here 阅读全文
posted @ 2018-05-05 14:42 医者心 阅读(155) 评论(0) 推荐(0) 编辑
摘要: //修改表名 ALTER TABLE <旧表名> RENAME [TO] <新表名> TO为可选表名 //添加字段 ALTER TABLE 表名 ADD 字段名 数据类型 [属性]; //修改字段 ALTER TABLE 表名 CHANGE 原字段名 新字段名 [属性]; //删除字段 ALTER 阅读全文
posted @ 2018-03-13 11:18 医者心 阅读(247) 评论(0) 推荐(0) 编辑
摘要: package Chapter8.ShiLi.Demo1; import java.io.File; public class FileMethods { public static void main(String[] args) { FileMethods fm = new FileMethod 阅读全文
posted @ 2018-02-19 21:02 医者心 阅读(1649) 评论(0) 推荐(0) 编辑
摘要: package Chapter7.ShiLi.Demo6; public class ThreadDemo { public static void main(String[] args) { System.out.println("Wait"); Wait.bySec(5); System.out 阅读全文
posted @ 2018-02-19 20:57 医者心 阅读(133) 评论(0) 推荐(0) 编辑
摘要: package Chapter6.ShiLi; public class Dog { public String Name; public String Type; // 带参构造函数 public Dog(String name, String type) { this.Name = name; 阅读全文
posted @ 2018-02-13 22:32 医者心 阅读(100) 评论(0) 推荐(0) 编辑
摘要: package Chapter5.ShiLi.Demo1; import java.util.*; public class Test7 { /** * 多重catch块异常处理判断 * @param args */ public static void main(String[] args) { 阅读全文
posted @ 2018-02-12 17:04 医者心 阅读(129) 评论(0) 推荐(0) 编辑