1
yestodayHadRain OP 大佬们别只看呀,谁清楚麻烦给解释解释,小弟跪谢啦
|
2
lhx2008 2018-05-17 19:13:46 +08:00
递归封装的,没有问题啊,先是订单 list,里面的 person 是 null,然后再取 person 装进来,然后 person 再取订单装进来。有深度限制的,最后就是 null
|
3
yestodayHadRain OP 你的意思是最后封装好的 list 和 person 都是 null ?
|
4
yestodayHadRain OP @lhx2008 不会吧,如果最后都是空的为什么还要这样写 javabean 呢?
|
5
lhx2008 2018-05-17 19:24:58 +08:00
@yestodayHadRain order -> person -> order -> person -> null 多少层可以设置的,要不然什么时候完?
|
6
yestodayHadRain OP @lhx2008 你的意思是,set 和 person 最后都是按 null 来封装起来的吗?
|
7
lhx2008 2018-05-17 20:29:18 +08:00
@yestodayHadRain 你可以试下取出来的 bean,一直 get 下去,看看报不报错,你就懂了(当然更简单的方法是打断点看)
|
8
yestodayHadRain OP @lhx2008 我大概清楚了,其实 set 集合里面的 order 下面的 person 为空是没事的,因为当前我们查询的就是这个 person
|
9
yestodayHadRain OP @lhx2008 我理解的对吗?
|
10
lhx2008 2018-05-17 20:40:27 +08:00 via Android
@yestodayHadRain 是的
|
11
yestodayHadRain OP @lhx2008 感谢
|