JavaBean
实体类
JavaBean有特定的写法:
- 必须有一个无参构造
- 属性必须私有化
- 必须有对应的get/set方法
一般用来和数据库的字段做映射 ORM;
ORM:对象关系映射
- 表-->类
- 字段-->属性
- 行记录-->对象
People表
id | name | age | address |
---|---|---|---|
1 | 多多1号 | 3 | 龙山 |
2 | 多多2号 | 22 | 龙山 |
3 | 多多3号 | 99 | 龙山 |
class People {
private int id;
private String name;
private int age;
private String address;
}
class A{
new People(1,"多多1号",3,"龙山");
}