我有一个只有1个对象的列表。我需要从列表中检索它,然后使用此对象。这是我的例子 -
public CurrentPosition getCurrentNo(){
List<CurrentPositionDB>currentPositionDBs = readAllPosition();//list has only 1 object
CurrentPositionDB result = null;
CurrentPosition currentPosition = new CurrentPosition();
if(currentPositionDBs!=null && !currentPositionDBs.isEmpty()) {
//retrieve object from currentPositionDBs list and use it to assign for currentPosition object
}
return currentPosition;
}
答案 0 :(得分:0)
使用此代码currentPositionDBs.get(0)
答案 1 :(得分:0)
正如@TheLostMind大脑在他/她的评论中所说,你应该查看util.List上的文档
你正在寻找的是这些:
currentPosition = currentPositionDBs.get(0);