im trying to shuffle music tracks with the collections im unsure of on how to do this.
public void Shuffle()
{
Collections ArrayList<Track>;
}
what i started with ^
im trying to shuffle music tracks with the collections im unsure of on how to do this.
public void Shuffle()
{
Collections ArrayList<Track>;
}
what i started with ^
Example
public class Random {
public static void main(String[] args) {
List<String> teamList=Arrays.asList("Ananaya", "Mike","James", "Shashwat");
Collections.shuffle(teamList);
int counter=0;
for (String value:teamList){
System.out.println("The build schedule for week "+ ++counter + " is to be done by "+value);
}
}
}