自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 MySQL INDEX

-- test index with 'and & or' - begin-- type: refexplainselect * from student where name = '' and class_id = '';-- type: all, extra: using whereexplainselect * from student where name = ''...

2018-05-31 17:01:52 494

原创 MySQL JOIN

-- 删除现有表drop table if exists class;drop table if exists student;-- 建表create table class ( id int, name varchar(50));create table student ( id int, name varchar(50), class_id int);-- 查看表...

2018-05-28 15:37:39 191

原创 IntelliJ IDEA 自动消除行尾空格

 "Strip trailing spaces on Save" - 选择 All"Always keep trailing spaces on caret line" - 取消勾选

2017-10-27 14:45:27 11317 1

原创 Java 中的浅度克隆与深度克隆(测试用例)

// 这里借助了 Hutool 工具包,www.hutool.cnimport com.xiaoleilu.hutool.clone.CloneSupport;public class Student extends CloneSupport implements Serializable { private String name; private int

2017-10-27 14:10:01 978

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除