I have written some code that works fine but I am confused about the correct way to declare a TreeMap.
If SortedMap is a subinterface of Map then is it okay to just use Map if the code is working okay? Is SortedMap even necessary if TreeMap works fine with Map?
Should it be:
private Map<String, List <Bus>> busTimetable = new TreeMap<String, List <Bus>>();
or
private SortedMap, List <Bus>> busTimetable = new TreeMap<String, List <Bus>>();
Thanks. Sorry this is so basic - I am new to Java.
