Arraylist
のレコードを持っています。
package com.demo.myproject;
public class Records
{
String countryName;
long numberOfDays;
public String getCountryName() {
return countryName;
}
public void setCountryName(String countryName) {
this.countryName = countryName;
}
public long getNumberOfDays() {
return numberOfDays;
}
public void setNumberOfDays(long numberOfDays) {
this.numberOfDays = numberOfDays;
}
Records(long days,String cName)
{
numberOfDays=days;
countryName=cName;
}
}
私Arraylist<Records>
の値が含まれています
Singapore 12
Canada 3
United Sates 12
Singapore 21
私の出力が
Canada 3
Singapore 33
United States 12
解決策、アプローチを手伝ってください。