程序理解问题
在GoddessDao类中,为什么要把rs查找的user_name和age用set方法设置到Goddess类中呢?
g = new Goddess();
g.setUser_name(rs.getString("user_name"));
g.setAge(rs.getInt("age"));
在GoddessDao类中,为什么要把rs查找的user_name和age用set方法设置到Goddess类中呢?
g = new Goddess();
g.setUser_name(rs.getString("user_name"));
g.setAge(rs.getInt("age"));
2016-11-29
举报