检查一下你的集合List是不是写陈LIst<Users> list = null;
问题就是因为你只是赋值集合为空但是并没有给集合在堆中分配内存
简单来说就是应该写陈List<Users> list = new ArrarList<Users>();