1. 程式人生 > >個人對細粒度和粗粒度的理解

個人對細粒度和粗粒度的理解

看了一些網上的介紹,說下個人對粗細粒度的理解:


interface   Info{
  public int getId(int id);
  public String getName(String name);
  public int getAge(int age);

  public int getSex(int  sex)

}

上面就是細粒度的體現;


interface Info{
  public String  getInfo(Person person);
}
person有id,name,age,sex 根據什麼查都是這個介面。

粗粒度的體現;