I have a char array:
char[] a = {'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd'};
My current solution is to do
String b = new String(a);
But surely that is a better way in doing this?
|
|
No, that solution is absolutely correct and very minimal. Note however, that this is a very unusual situation: Because Compare this to C/C++ where |
||||
|
|
|
|
|||||||||||
|