public class StudentDao { public Student getStudent(){ Student stu = new Student(); stu.setName("aaa"); stu.setPassword("123"); return stu; } public static void main(){ StudentDao sd = new StudentDao(); System.out.println(sd.getStudent().getName()+ " "+sd.getStudent().getPassword()); }}这里只是举例说明,无很大意义。。。想想如果你是查数据库的数据。里面很多字段。你是封装成一个类(Vo)还是一个个慢慢取。放回类类型,自然可以得到里面属性的值。ssh框架也是这样大量应用。
时间: 2024-12-27 07:44:26