Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active June 29, 2024 17:21
Show Gist options
  • Save mcsee/ddb3f75add70512e671e57a9440a862c to your computer and use it in GitHub Desktop.
Save mcsee/ddb3f75add70512e671e57a9440a862c to your computer and use it in GitHub Desktop.
public class Person {
private List<String> hobbies;
public Person(List<String> hobbies) {
this.hobbies = new ArrayList<>(hobbies);
}
public List<String> hobbies() {
// This returns a shallow copy
// This is usually not a big performance issue
return new ArrayList<>(hobbies);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment