我有一个以下形式的对象list_of_dates
:
[2018-06-18T00:00Z, 2018-06-23T00:00Z, 2018-06-02T00:00Z,...,2018-06-21T00:00Z]
我想提取最新日期。我不能在以下的帮助下做到这一点:
//here, I assume object is transformed into list and then sorted.
Collections.sort(Arrays.asList(list_of_dates));
return list_of_dates[list_of_dates.length-1];
你能说明我为什么会收到错误吗?