Skip to content

Instantly share code, notes, and snippets.

@mcupak
Created November 6, 2017 21:23
Show Gist options
  • Select an option

  • Save mcupak/8b4132659bc554633b388e72a390ffe6 to your computer and use it in GitHub Desktop.

Select an option

Save mcupak/8b4132659bc554633b388e72a390ffe6 to your computer and use it in GitHub Desktop.
jshell> List<String> list = new ArrayList<String>()
list ==> []
jshell> list.add("a")
$2 ==> true
jshell> list.add("b")
$3 ==> true
jshell> list.add("c")
$4 ==> true
jshell> list = Collections.unmodifiableList(list)
list ==> [a, b, c]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment