Logo

Programming-Idioms

  • Rust
  • Java
String s = = new Character(c).toString();
String s = Character.toString(c);
String s = c + "";

This "lazy way" is quite common, but slow at runtime.
String s = String.valueOf(c);
String s = "%s".formatted(c);
let s = c.to_string();
S : constant String := "" & C;

Create string by concatenating character to empty string

New implementation...
< >
programming-idioms.org