问题描述
- hql语句执行后返回了list<object>集合,如何添加新的数据到list集合中呢
-
如题,我执行了一个hql语句,
StringBuffer hql1 = new StringBuffer("select information from Information information where 1=1 "); 我将返回的list放入如下的inlist中
inlist=courseService.CourseExtractInformation(user.getWork_id());
已经返回了一个inlist集合, 现在我想加入新的object类型,也就是上面的information类型的对象数据,要如何操作呢
解决方案
List inlist=new ArrayList(); List 实例化
解决方案二:
List inlist=new ArrayList(); List 实例化 。。。。
List<information> inlist=new ArrayList<information>(); List 实例化 。。。。
解决方案四:
// new一个新对象
Information info = new Information();
// 将你要加入的新的数据封装进去
。。。。。。。。;
// 集合加入新对象
inlist.add(info);
解决方案五:
list .add()list d的add方法
时间: 2025-01-20 18:41:33