Sometimes I see follow bugs: char charValue = 'a'; int intValue = 1; String str = charValue + intValue; Expected value is "a1", but actual result is "99".
Log in to post a comment.