javabean:一个普通类。即描述事物的类,里面不包含任何的业务逻辑,只是作为载体用来存储数据的。
javabean别名:vo、pojo、entity、model、dto...
书写规范:
1.成员变量私有化;
2.为私有属性提供公共的访问方法:getter/setter方法
3.提供无参构造方法;
4.提供有参构造方法。
public class ProductDemo{
//成员属性私有化
private String name;
private int price;
//无参构造
public ProductDemo(){}
//有参构造
public ProductDemo(String name,int price){
This.name = name;
This.price = price;
}
//为私有属性提供getter/setter方法
public String getName(){
return name;
}
public void setName(String name){
This.name = name;
}
public int getPrice(){
return price;
}
public void setPrice(int price){
This.price = price;
}
}