CJCoding With Joseph
15per day

Playlist Deep Copy

Create a class Playlist that implements Cloneable. It stores a String[] songs. Implement clone() so it deep copies the songs array. Also add getSong(int index) to return a song from the array at that index.

clone() should return a new Playlist. Do NOT write a main method.

Expected Output:

A
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.