Java Int to String

  • + 3 comments

    You don't even need the String s = "". You can just do

    String s = Integer.toString(n); 
    

    right?