Description

// Convert elements to strings and concatenate them, separated by commas String joined = things.stream() .map(Object::toString) .collect(Collectors.joining(", "));

Preview

Tags

Users

  • @jil

Comments and Reviews