Check out example codes for "convert char to string java". It will help you in understanding the concepts better.
Code Example 1
char c = 'a';
String s = Character.toString(c);
//s == "a"
Code Example 2
(char[]).toString();//the lvalue or even rvalue of char[] + toString()
String MyString = new String(MyChars);
Code Example 3
char c = 'a';
String s = Character.toString(c);
Learn ReactJs, React Native from akashmittal.com