Skip to content

Instantly share code, notes, and snippets.

@TheGreatJoules
Last active August 5, 2023 07:44
Show Gist options
  • Save TheGreatJoules/898ed0ca1474fb0ca007527bc7ec48fe to your computer and use it in GitHub Desktop.
Save TheGreatJoules/898ed0ca1474fb0ca007527bc7ec48fe to your computer and use it in GitHub Desktop.
[Java/CharToArray]An approach to stream char array
char[] result = {'a','b','c'};
String output = Stream.of(result)
.map(String::valueOf)
.collect(Collectors.joining())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment