Created
November 6, 2017 21:23
-
-
Save mcupak/8b4132659bc554633b388e72a390ffe6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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