What does plus sign does here in string?
- by Thanga
I would like to know, what is the difference between two statements, these may be simple
String ss="myname";
char[] charArray = ss.toCharArray();
for ( char character : charArray )
{
System.out.println( +character );//Statements are here what does plus refers here:
System.out.println( character ); //Statements are here:
}
I got the output for the code no errors but little doubt on how it works? What happens here?
If you would down vote let me know the reason please ,
Thanks in advance