Android Array列表,用于查找自定义数据类型arraylist的最小值

时间:2017-09-05 09:48:10

标签: java android arraylist minimum

我正致力于家庭跟踪器应用程序。我需要找到用户的最新位置。为此,我使用时差法。我创建了自定义数据类型列表,其中存储了时差和纬度/经度,但我无法找到最小时差和纬度/经度。

Arraylist包含id,lat,long和time差异。

我的代码:

timediff = SystemDateTime.getTime() - ServerDateTime.getTime();
TimeDifferenceModel timeDiffModel = new TimeDifferenceModel(Id, timediff, lat, lang); 
DifferenceData.add(timeDiffModel);

TimeDifferenceModel

public TimeDifferenceModel(String id, long timediff, double lat, double lang)
{ 
    this.id = id; 
    this.timediff = timediff; 
    this.lat = lat; 
    this.lang = lang; 
}

0 个答案:

没有答案