摘要: 1.数值型 1.整型 tinyint 1 smallint 2 mediumint 3 int/Integer 4 bigint 8 特点: 都可以设置无符号和有符号数,默认有符号,通过unsigned设置无符号 如果超出范围,会报out of range 异常,插入临界值 长度不指定,会有一个默认 阅读全文
posted @ 2020-11-04 18:12 执着的乌龟 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 创建数据库: create database 【if not exists】 库名 【character set 字符集名】; 修改库: alter database 库名 character set 字符集合; 如想修改数据库名,直接通过修改文件夹名的方式去修改 删库: drop database 阅读全文
posted @ 2020-11-04 17:59 执着的乌龟 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 插入: 第一种方式: insert into table(字段名) values(值),(); 支持插入多条记录,支持子查询,即insert into table 子查询 第二种方式: insert into table set 字段名=值 修改: 修改单表记录: update 表名 set 列 = 阅读全文
posted @ 2020-11-04 17:47 执着的乌龟 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 主要有两种方式区分: 1.以内存作为参照物按流向分:输入流和输出流 2.按照数据格式分:字节流(以Stream结尾)、字符流(以Reader/Writer结尾) java.io包下的流,主要用的有以下几个: 文件专属: FileInputStream: FileInputStream fis = n 阅读全文
posted @ 2020-10-29 21:24 执着的乌龟 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 集合的简单结构(口头叙述一下): Iteratable接口中含有一个iterator()方法,可以产生一个iterator对象 Collection接口继承了Iteratable接口,源码中使用的extends关键字;(单一数据) 而Collection接口下有以下接口继承了Collection接口 阅读全文
posted @ 2020-10-29 01:03 执着的乌龟 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 在jdk5后,java提供了自动装箱与自动拆箱 有如下程序代码: public class IntegerTest { public static void main(String[] args) { Integer a = 126; Integer as = 126; System.out.pri 阅读全文
posted @ 2020-10-28 09:16 执着的乌龟 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 字符串拼接,之前使用的"字符串"+"字符串"的方式,但是会在字符串常量池中生成大量的字符串对象,因此,在字符串的拼接中,一般使用StringBuffer火StringBuilder。 首先需要了解为啥字符串常量无法更改,通过查看String类源码,会发现如下代码: public final clas 阅读全文
posted @ 2020-10-28 09:02 执着的乌龟 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 1.所有字符串常量均存在字符串常量池中。 2.凡是双引号括起来的都在字符串常量池中有一份 如下代码: public class StringTest { public static void main(String[] args) { String s1 = "abcdef"; String s2 阅读全文
posted @ 2020-10-27 19:56 执着的乌龟 阅读(255) 评论(0) 推荐(0) 编辑
摘要: public class BinarySelect { public static void main(String[] args) { int []array = {7,22,33,48,89,89,111,199,223,588}; System.out.println("下标为" + bina 阅读全文
posted @ 2020-10-27 19:29 执着的乌龟 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 使用java实现冒泡排序,不适用Arrays工具类: public class BubbSort { public static void main(String[] args) { int []array = {1,23,48,89,199,588,22,33}; maopaoSort(array 阅读全文
posted @ 2020-10-27 18:59 执着的乌龟 阅读(91) 评论(0) 推荐(0) 编辑