Hi guys, is there any difference between these two ways?
List wordlist = new ArrayList <> ();
and
ArrayList wordlist = new ArrayList ();
Java List and ArrayList
Hi guys,
is there any difference between these two ways?
List wordlist = new ArrayList <> ();
and
ArrayList wordlist = new ArrayList ();