好的,我有这个
public static List<DataValue> result = new LinkedList<>();
public static class DataValue {
protected final String first;
protected final int second;
public DataValue(String first, int second) {
this.first = first;
this.second = second;
}
}
添加到列表...
String first = "bob";
int second = "50";
result.add(new DataValue(first, second));
我试图从数据中获取一个随机字段,显示它,然后从列表中删除它,这样它就不会再次被使用
我该怎么做呢?
我目前在抓取数据方面的尝试并不顺利
System.out.println("第一个:"+DataValue.result.getFirst());
并且还尝试了 System.out.println("First: "+result.getFirst(DataValue));
我不知道如何抓住它,也找不到任何关于它的文章,感谢任何帮助
LinkedList 中大约有 5000 个条目,如果这有什么不同的话