获取一个list对象中为什么要这样ArrayList<Items> list = itemsDao.getAllItems();
而不用ArrayList list = new ArrayList();呢
...这样不就可以获得一个有数据的List吗,而new一个list,里面肯定没有数据啊。