I have an integer let say, int a = 123;
Now, I can convert it to String using below two ways:
1. Integer.toString(a)
2. String.valueOf(a)
I want to know, if there is any performance difference between the above two ways, let say when we are doing this for 10k integers or more and if yes then why?