摘要:
概念:设计模式:(只能有一个对像存在) 把一些反复使用的,多数人都会去使用的一些方法封装成一个设计,提供给他其他人使用 public class ArraysTool{ //静态 public static final ArraysTool instance = new ArraysTool(); 阅读全文
摘要:
/*** * 创建数据库测试批量插入数据 * * 在数据库xzit创建数据库表格person: * create person( * id varchar(255), * name vaaechar(255), * sex varchar(2), * age int * ); * */ public 阅读全文
摘要:
drop table if exists province; create table province( id bigint primary key auto_increment , name varchar(64) , municipality int default '1' , descrip 阅读全文