摘要:
1.创建一个Student实体类 2.枚举类 阅读全文
摘要:
public class BasisTest { /** * 封装类/包装类 : 把 基本数据类型转换成对象! * * 基本数据类型 包装类 * byte Byte * short Short * int Integer ... 阅读全文
摘要:
Collections工具类的使用 创建测试类 3.map遍历的效率比较 汉字的排序 阅读全文
摘要:
Map的泛型集合 创建Student实体类 创建测试类 阅读全文
摘要:
List 接口存储一组不唯一(可以重复),有序(插入顺序)的对象 01. ArrayList实现了长度可变的数组,在内存中分配连续的空间。遍历元素和随机访问元素的效率比较高 通过看ArrayList的源码得知: /** * Constructs an empty list with an initi 阅读全文
摘要:
找到myeclipse安装目录中的 然后把这个jar包复制到桌面 以压缩包的方式打开 之后保存, 然后把修改的这个jar包放到刚开的路径,替换已经存在的! 完成! 阅读全文
摘要:
public class DateTest { /* * 日期格式 常用的两种 * yyyy-MM-dd * yyyy/MM/dd */ public static void main(String[] args) throws ParseException { //01.Date 转换成字符串 Date ... 阅读全文
摘要:
public class StringTest { @Test public void test01() { int a = 50; // 基本数据类型比较的是值 int b = 50; System.out.println(a == b); } @Test public void test02() 阅读全文
摘要:
第1次课 -- 01.启动mysql服务 使用管理员身份启动cmd net start mysql -- 02.关闭服务 net stop mysql -- 03.连接mysql数据库 如果是本机 可以省略 -h ip地址 -p和密码不能有空格 mysql -h ip地址 ... 阅读全文
摘要:
order by 子查询 统计函数 小练习: 有个tb表 字段如下 要求实现的效果 实现代码 阅读全文