-4
I need to create a java playlist algorithm that removes music from a playlist, I already have the forward, back, random and play buttons; I need to remove music from the playlist with a playlist algorithm, but I have no idea how to do it
-4
I need to create a java playlist algorithm that removes music from a playlist, I already have the forward, back, random and play buttons; I need to remove music from the playlist with a playlist algorithm, but I have no idea how to do it
0
If using Arraylist for example, just use the remove method:
lista.remove(musica_que_deseja_remover);
Browser other questions tagged java list algorithm
You are not signed in. Login or sign up in order to post.
Ever tried to make a
list.remove(o)
?– Jefferson Quesado