Java Int to String

  • + 1 comment

    Simple solution that works since Java's + operator is "overloaded" in the sense that it concatinates strings at compile-time.

    String s = "" + n;